Struct once_cell::unsync::Lazy[][src]

pub struct Lazy<T, F: Fn() -> T = 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!("A");
println!("{}", *lazy);
println!("{}", *lazy);

// prints
//   A
//   initializing
//   92
//   92

Methods

impl<T, F: Fn() -> T> Lazy<T, F>
[src]

Creates a new lazy value with the given initializing function.

Trait Implementations

impl<T: Debug, F: Debug + Fn() -> T> Debug for Lazy<T, F>
[src]

Formats the value using the given formatter. Read more

impl<T, F: Fn() -> T> Deref for Lazy<T, F>
[src]

The resulting type after dereferencing.

Dereferences the value.

Auto Trait Implementations

impl<T, F> Send for Lazy<T, F> where
    F: Send,
    T: Send

impl<T, F = fn() -> T> !Sync for Lazy<T, F>