[][src]Struct lazycell::AtomicLazyCell

pub struct AtomicLazyCell<T> { /* fields omitted */ }

A lazily filled and thread-safe Cell, with frozen contents.

Methods

impl<T> AtomicLazyCell<T>[src]

pub const NONE: Self[src]

An empty AtomicLazyCell.

pub fn new() -> AtomicLazyCell<T>[src]

Creates a new, empty, AtomicLazyCell.

pub fn fill(&self, t: T) -> Result<(), T>[src]

Put a value into this cell.

This function will return Err(value) is the cell is already full.

pub fn replace(&mut self, value: T) -> Option<T>[src]

Put a value into this cell.

Note that this function is infallible but requires &mut self. By requiring &mut self we're guaranteed that no active borrows to this cell can exist so we can always fill in the value. This may not always be usable, however, as &mut self may not be possible to borrow.

Return value

This function returns the previous value, if any.

pub fn filled(&self) -> bool[src]

Test whether this cell has been previously filled.

pub fn borrow(&self) -> Option<&T>[src]

Borrows the contents of this lazy cell for the duration of the cell itself.

This function will return Some if the cell has been previously initialized, and None if it has not yet been initialized.

pub fn into_inner(self) -> Option<T>[src]

Consumes this LazyCell, returning the underlying value.

impl<T: Copy> AtomicLazyCell<T>[src]

pub fn get(&self) -> Option<T>[src]

Returns a copy of the contents of the lazy cell.

This function will return Some if the cell has been previously initialized, and None if it has not yet been initialized.

Trait Implementations

impl<T: Debug> Debug for AtomicLazyCell<T>[src]

impl<T: Sync + Send> Sync for AtomicLazyCell<T>[src]

impl<T: Send> Send for AtomicLazyCell<T>[src]

impl<T: Clone> Clone for AtomicLazyCell<T>[src]

fn clone(&self) -> AtomicLazyCell<T>[src]

Create a clone of this AtomicLazyCell

If self has not been initialized, returns an uninitialized AtomicLazyCell otherwise returns an AtomicLazyCell already initialized with a clone of the contents of self.

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: Default> Default for AtomicLazyCell<T>[src]

Auto Trait Implementations

impl<T> Unpin for AtomicLazyCell<T> where
    T: Unpin

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]