#[repr(usize)]enum State {
Uninitialized = 0,
Initializing = 1,
Initialized = 2,
}Expand description
The current state of the OnceCell.
Variants§
Uninitialized = 0
The OnceCell is uninitialized.
Initializing = 1
The OnceCell is being initialized.
Initialized = 2
The OnceCell is initialized.
Trait Implementations§
impl Copy for State
impl Eq for State
impl StructuralPartialEq for State
Auto Trait Implementations§
impl Freeze for State
impl RefUnwindSafe for State
impl Send for State
impl Sync for State
impl Unpin for State
impl UnwindSafe for State
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more