Struct std::sync::LazyLock

source ·
pub struct LazyLock<T, F = fn() -> T> { /* private fields */ }
🔬This is a nightly-only experimental API. (lazy_cell #109736)
Expand description

在首次访问时初始化的值。

此类型是线程安全的 LazyCell,可用于静态。

Examples

#![feature(lazy_cell)]

use std::collections::HashMap;

use std::sync::LazyLock;

static HASHMAP: LazyLock<HashMap<i32, String>> = LazyLock::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:
    //   准备初始化
    //   Some("Spica")
    //   Some("Hoyten")
}
Run

Implementations§

source§

impl<T, F: FnOnce() -> T> LazyLock<T, F>

source

pub const fn new(f: F) -> LazyLock<T, F>

🔬This is a nightly-only experimental API. (lazy_cell #109736)

使用给定的初始化函数创建一个新的惰性值。

source

pub fn into_inner(this: Self) -> Result<T, F>

🔬This is a nightly-only experimental API. (lazy_cell_consume #109736)

使用此 LazyLock 返回存储的值。

如果 Lazy 已初始化,则返回 Ok(value),否则返回 Err(f)

Examples
#![feature(lazy_cell)]
#![feature(lazy_cell_consume)]

use std::sync::LazyLock;

let hello = "Hello, World!".to_string();

let lazy = LazyLock::new(|| hello.to_uppercase());

assert_eq!(&*lazy, "HELLO, WORLD!");
assert_eq!(LazyLock::into_inner(lazy).ok(), Some("HELLO, WORLD!".to_string()));
Run
source

pub fn force(this: &LazyLock<T, F>) -> &T

🔬This is a nightly-only experimental API. (lazy_cell #109736)

强制评估此惰性值,并返回引数以得出结果。 这等效于 Deref impl,但是是显式的。

Examples
#![feature(lazy_cell)]

use std::sync::LazyLock;

let lazy = LazyLock::new(|| 92);

assert_eq!(LazyLock::force(&lazy), &92);
assert_eq!(&*lazy, &92);
Run

Trait Implementations§

source§

impl<T: Debug, F> Debug for LazyLock<T, F>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

使用给定的格式化程序格式化该值。 Read more
source§

impl<T: Default> Default for LazyLock<T>

source§

fn default() -> LazyLock<T>

使用 Default 作为初始化函数创建一个新的惰性值。

source§

impl<T, F: FnOnce() -> T> Deref for LazyLock<T, F>

§

type Target = T

解引用后的结果类型。
source§

fn deref(&self) -> &T

解引用值。
source§

impl<T, F> Drop for LazyLock<T, F>

source§

fn drop(&mut self)

执行此类型的析构函数。 Read more
source§

impl<T: RefUnwindSafe + UnwindSafe, F: UnwindSafe> RefUnwindSafe for LazyLock<T, F>

source§

impl<T: Sync + Send, F: Send> Sync for LazyLock<T, F>

source§

impl<T: UnwindSafe, F: UnwindSafe> UnwindSafe for LazyLock<T, F>

Auto Trait Implementations§

§

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

§

impl<T, F> Unpin for LazyLock<T, F>where F: Unpin, T: Unpin,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

获取 selfTypeIdRead more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

从拥有的值中一成不变地借用。 Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

从拥有的值中借用。 Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

返回未更改的参数。

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

调用 U::from(self)

也就是说,这种转换是 From<T> for U 实现选择执行的任何操作。

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

发生转换错误时返回的类型。
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

执行转换。
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

发生转换错误时返回的类型。
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

执行转换。