Struct wasmtime_environ::__core::lazy::Lazy [−][src]
pub struct Lazy<T, F = fn() -> T> { /* fields omitted */ }
🔬 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
🔬 This is a nightly-only experimental API. (once_cell
)
🔬 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!");
🔬 This is a nightly-only experimental API. (once_cell
)
🔬 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);