[][src]Struct once_cell::race::OnceBox

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

Implementations

impl<T> OnceBox<T>[src]

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

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

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

pub fn get_or_init<F>(&self, f: F) -> &T where
    F: FnOnce() -> T, 
[src]

pub fn get_or_try_init<F, E>(&self, f: F) -> Result<&T, E> where
    F: FnOnce() -> Result<T, E>, 
[src]

Trait Implementations

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

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

impl<T> Drop for OnceBox<T>[src]

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

This example deliberately fails to compile
struct S(*mut ());
unsafe impl Sync for S {}

fn share<T: Sync>(_: &T) {}
share(&once_cell::race::OnceBox::<S>::new());

Auto Trait Implementations

impl<T> RefUnwindSafe for OnceBox<T> where
    T: RefUnwindSafe

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

impl<T> Unpin for OnceBox<T>

impl<T> UnwindSafe for OnceBox<T> where
    T: RefUnwindSafe + 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.