Skip to main content

LazyLock

Struct LazyLock 

Source
pub struct LazyLock<T, F = fn() -> T, R = Spin> { /* private fields */ }
Expand description

A value which is initialized on the first access.

This type is a thread-safe LazyLock, and can be used in statics.

§Examples

use std::collections::HashMap;
use spin::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:
    //   ready
    //   initializing
    //   Some("Spica")
    //   Some("Hoyten")
}

Implementations§

Source§

impl<T, F, R> LazyLock<T, F, R>

Source

pub const fn new(f: F) -> Self

Creates a new lazy value with the given initializing function.

Source

pub fn as_mut_ptr(&self) -> *mut T

Retrieves a mutable pointer to the inner data.

This is especially useful when interfacing with low level code or FFI where the caller explicitly knows that it has exclusive access to the inner data. Note that reading from this pointer is UB until initialized or directly written to.

Source§

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

Source

pub fn force(this: &Self) -> &T

Forces the evaluation of this lazy value and returns a reference to result. This is equivalent to the Deref impl, but is explicit.

§Examples
use spin::LazyLock;

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

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

Trait Implementations§

Source§

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

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<T: Default, R> Default for LazyLock<T, fn() -> T, R>

Source§

fn default() -> Self

Creates a new lazy value using Default as the initializing function.

Source§

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

Source§

type Target = T

The resulting type after dereferencing.
Source§

fn deref(&self) -> &T

Dereferences the value.
Source§

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

Auto Trait Implementations§

§

impl<T, F = fn() -> T, R = Spin> !Freeze for LazyLock<T, F, R>

§

impl<T, F = fn() -> T, R = Spin> !RefUnwindSafe for LazyLock<T, F, R>

§

impl<T, F = fn() -> T, R = Spin> !Sync for LazyLock<T, F, R>

§

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

§

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

§

impl<T, F, R> UnsafeUnpin for LazyLock<T, F, R>
where F: UnsafeUnpin, T: UnsafeUnpin,

§

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

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

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

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.