pub struct Lazy<T, F = fn() -> T> { /* private fields */ }Expand description
A value which is initialized on the first access.
This type is thread-safe and can be used in statics.
§Example
use std::collections::HashMap;
use once_cell::sync::Lazy;
static HASHMAP: Lazy<HashMap<i32, String>> = Lazy::new(|| {
    println!("initializing");
    let mut m = HashMap::new();
    m.insert(13, "Spica".to_string());
    m.insert(74, "Hoyten".to_string());
    m
});
fn main() {
    println!("ready");
    std::thread::spawn(|| {
        println!("{:?}", HASHMAP.get(&13));
    }).join().unwrap();
    println!("{:?}", HASHMAP.get(&74));
    // Prints:
    //   ready
    //   initializing
    //   Some("Spica")
    //   Some("Hoyten")
}Implementations§
Source§impl<T, F> Lazy<T, F>where
    F: FnOnce() -> T,
 
impl<T, F> Lazy<T, F>where
    F: FnOnce() -> T,
Sourcepub fn force(this: &Lazy<T, F>) -> &T
 
pub fn force(this: &Lazy<T, F>) -> &T
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::sync::Lazy;
let lazy = Lazy::new(|| 92);
assert_eq!(Lazy::force(&lazy), &92);
assert_eq!(&*lazy, &92);Sourcepub fn force_mut(this: &mut Lazy<T, F>) -> &mut T
 
pub fn force_mut(this: &mut Lazy<T, F>) -> &mut T
Forces the evaluation of this lazy value and
returns a mutable reference to the result. This is equivalent
to the Deref impl, but is explicit.
§Example
use once_cell::sync::Lazy;
let mut lazy = Lazy::new(|| 92);
assert_eq!(Lazy::force_mut(&mut lazy), &mut 92);Sourcepub fn get(this: &Lazy<T, F>) -> Option<&T>
 
pub fn get(this: &Lazy<T, F>) -> Option<&T>
Gets the reference to the result of this lazy value if
it was initialized, otherwise returns None.
§Example
use once_cell::sync::Lazy;
let lazy = Lazy::new(|| 92);
assert_eq!(Lazy::get(&lazy), None);
assert_eq!(&*lazy, &92);
assert_eq!(Lazy::get(&lazy), Some(&92));Sourcepub fn get_mut(this: &mut Lazy<T, F>) -> Option<&mut T>
 
pub fn get_mut(this: &mut Lazy<T, F>) -> Option<&mut T>
Gets the reference to the result of this lazy value if
it was initialized, otherwise returns None.
§Example
use once_cell::sync::Lazy;
let mut lazy = Lazy::new(|| 92);
assert_eq!(Lazy::get_mut(&mut lazy), None);
assert_eq!(&*lazy, &92);
assert_eq!(Lazy::get_mut(&mut lazy), Some(&mut 92));Trait Implementations§
impl<T, F> RefUnwindSafe for Lazy<T, F>
impl<T, F> Sync for Lazy<T, F>
Auto Trait Implementations§
impl<T, F = fn() -> T> !Freeze for Lazy<T, F>
impl<T, F> Send for Lazy<T, F>
impl<T, F> Unpin for Lazy<T, F>
impl<T, F> UnwindSafe for Lazy<T, F>where
    T: UnwindSafe,
    F: UnwindSafe,
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
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
 
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more