pub struct Lazy<T, F = fn() -> T> { /* private fields */ }
🔬 This is a nightly-only experimental API. (
once_cell
)Expand description
A value which is initialized on the first access.
Examples
#![feature(once_cell)]
use std::lazy::Lazy;
let lazy: Lazy<i32> = Lazy::new(|| {
println!("initializing");
92
});
println!("ready");
println!("{}", *lazy);
println!("{}", *lazy);
// Prints:
// ready
// initializing
// 92
// 92
Implementations
sourceimpl<T, F> Lazy<T, F>
impl<T, F> Lazy<T, F>
sourcepub const fn new(init: F) -> Lazy<T, F>
🔬 This is a nightly-only experimental API. (once_cell
)
pub const fn new(init: F) -> Lazy<T, F>
🔬 This is a nightly-only experimental API. (
once_cell
)Creates a new lazy value with the given initializing function.
Examples
#![feature(once_cell)]
use std::lazy::Lazy;
let hello = "Hello, World!".to_string();
let lazy = Lazy::new(|| hello.to_uppercase());
assert_eq!(&*lazy, "HELLO, WORLD!");
sourceimpl<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
🔬 This is a nightly-only experimental API. (once_cell
)
pub fn force(this: &Lazy<T, F>) -> &T
🔬 This is a nightly-only experimental API. (
once_cell
)Forces the evaluation of this lazy value and returns a reference to the result.
This is equivalent to the Deref
impl, but is explicit.
Examples
#![feature(once_cell)]
use std::lazy::Lazy;
let lazy = Lazy::new(|| 92);
assert_eq!(Lazy::force(&lazy), &92);
assert_eq!(&*lazy, &92);
Trait Implementations
Auto Trait Implementations
impl<T, F = fn() -> T> !RefUnwindSafe for Lazy<T, F>
impl<T, F> Send for Lazy<T, F> where
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,
impl<T, F> UnwindSafe for Lazy<T, F> where
F: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more