Struct once_cell::unsync::Lazy [−][src]
pub struct Lazy<T, F = fn() -> T> { /* fields omitted */ }
A value which is initialized on the first access.
Example
use once_cell::unsync::Lazy; let lazy: Lazy<i32> = Lazy::new(|| { println!("initializing"); 92 }); println!("ready"); println!("{}", *lazy); println!("{}", *lazy); // Prints: // ready // initializing // 92 // 92
Implementations
impl<T, F> Lazy<T, F>
[src]
impl<T, F> Lazy<T, F>
[src]impl<T, F: FnOnce() -> T> Lazy<T, F>
[src]
impl<T, F: FnOnce() -> T> Lazy<T, F>
[src]pub fn force(this: &Lazy<T, F>) -> &T
[src]
Forces the evaluation of this lazy value and returns a reference to the result.
This is equivalent to the Deref
impl, but is explicit.
Example
use once_cell::unsync::Lazy; let lazy = Lazy::new(|| 92); assert_eq!(Lazy::force(&lazy), &92); assert_eq!(&*lazy, &92);
Trait Implementations
impl<T, F: RefUnwindSafe> RefUnwindSafe for Lazy<T, F> where
OnceCell<T>: RefUnwindSafe,
[src]
OnceCell<T>: RefUnwindSafe,
Auto Trait Implementations
impl<T, F> Send for Lazy<T, F> where
F: Send,
T: Send,
F: Send,
T: Send,
impl<T, F = fn() -> T> !Sync for Lazy<T, F>
impl<T, F> Unpin for Lazy<T, F> where
F: Unpin,
T: Unpin,
F: Unpin,
T: Unpin,
impl<T, F> UnwindSafe for Lazy<T, F> where
F: UnwindSafe,
T: UnwindSafe,
F: UnwindSafe,
T: UnwindSafe,