[][src]Struct maybe_cell::unchecked::Maybe

#[repr(transparent)]pub struct Maybe<T> { /* fields omitted */ }

Equivalent to an UnsafeCell<MaybeUninit<T>>, this cell may hold uninitialized data.

Implementations

impl<T> Maybe<T>[src]

pub const fn empty() -> Self[src]

Create a new, empty Maybe<T>.

pub const fn new(data: T) -> Self[src]

Create a new, populated Maybe<T>.

pub fn as_ptr(&self) -> *const T[src]

Access the contained value as a constant pointer.

pub fn as_mut_ptr(&mut self) -> *mut T[src]

Access the contained value as a mutable pointer.

pub unsafe fn as_ref(&self) -> &T[src]

Obtain a reference to the contained value. This method is unsafe because the value may not have been initialized.

pub fn set_loaded(&self, _loaded: bool)[src]

Override the loaded flag of the cell. This method is a no-op when using the unchecked implementation. It may be used when a value is inserted manually, for example by assigning to the dereferenced pointer.

pub fn clear(&self)[src]

Drop the contained value in place.

pub fn load(&self) -> T[src]

Load the contained value.

pub fn store(&self, value: T)[src]

Store a new value in the cell.

Auto Trait Implementations

impl<T> !RefUnwindSafe for Maybe<T>

impl<T> Send for Maybe<T> where
    T: Send

impl<T> !Sync for Maybe<T>

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

impl<T> UnwindSafe for Maybe<T> where
    T: UnwindSafe

Blanket Implementations

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

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

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

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

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

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> 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.