once_cell::race

Struct OnceNonZeroUsize

Source
pub struct OnceNonZeroUsize { /* private fields */ }
Expand description

A thread-safe cell which can be written to only once.

Implementations§

Source§

impl OnceNonZeroUsize

Source

pub const fn new() -> OnceNonZeroUsize

Creates a new empty cell.

Source

pub fn get(&self) -> Option<NonZeroUsize>

Gets the underlying value.

Source

pub unsafe fn get_unchecked(&self) -> NonZeroUsize

Get the reference to the underlying value, without checking if the cell is initialized.

§Safety

Caller must ensure that the cell is in initialized state, and that the contents are acquired by (synchronized to) this thread.

Source

pub fn set(&self, value: NonZeroUsize) -> Result<(), ()>

Sets the contents of this cell to value.

Returns Ok(()) if the cell was empty and Err(()) if it was full.

Source

pub fn get_or_init<F>(&self, f: F) -> NonZeroUsize
where F: FnOnce() -> NonZeroUsize,

Gets the contents of the cell, initializing it with f if the cell was empty.

If several threads concurrently run get_or_init, more than one f can be called. However, all threads will return the same value, produced by some f.

Source

pub fn get_or_try_init<F, E>(&self, f: F) -> Result<NonZeroUsize, E>
where F: FnOnce() -> Result<NonZeroUsize, E>,

Gets the contents of the cell, initializing it with f if the cell was empty. If the cell was empty and f failed, an error is returned.

If several threads concurrently run get_or_init, more than one f can be called. However, all threads will return the same value, produced by some f.

Trait Implementations§

Source§

impl Debug for OnceNonZeroUsize

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for OnceNonZeroUsize

Source§

fn default() -> OnceNonZeroUsize

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.