pub struct OnceLock<T> { /* private fields */ }
Expand description

Wrapper for std::sync::OnceLock

The exact locking behaviour of std::sync::OnceLock is currently undefined, but may deadlock in the event of reentrant initialization attempts. This wrapper participates in cycle detection as normal and will therefore panic in the event of reentrancy.

Most of this primitive’s methods do not involve locking and as such are simply passed through to the inner implementation.

§Examples

use tracing_mutex::stdsync::tracing::OnceLock;

static LOCK: OnceLock<i32> = OnceLock::new();
assert!(LOCK.get().is_none());

std::thread::spawn(|| {
   let value: &i32 = LOCK.get_or_init(|| 42);
   assert_eq!(value, &42);
}).join().unwrap();

let value: Option<&i32> = LOCK.get();
assert_eq!(value, Some(&42));

Implementations§

source§

impl<T> OnceLock<T>

source

pub const fn new() -> Self

Creates a new empty cell

source

pub fn get(&self) -> Option<&T>

Gets a reference to the underlying value.

This method does not attempt to lock and therefore does not participate in cycle detection.

source

pub fn get_mut(&mut self) -> Option<&mut T>

Gets a mutable reference to the underlying value.

This method does not attempt to lock and therefore does not participate in cycle detection.

source

pub fn set(&self, value: T) -> Result<(), T>

Sets the contents of this cell to the underlying value

As this method may block until initialization is complete, it participates in cycle detection.

source

pub fn get_or_init<F>(&self, f: F) -> &T
where F: FnOnce() -> T,

Gets the contents of the cell, initializing it with f if the cell was empty.

This method participates in cycle detection. Reentrancy is considered a cycle.

source

pub fn take(&mut self) -> Option<T>

Takes the value out of this OnceLock, moving it back to an uninitialized state.

This method does not attempt to lock and therefore does not participate in cycle detection.

source

pub fn into_inner(self) -> Option<T>

Consumes the OnceLock, returning the wrapped value. Returns None if the cell was empty.

This method does not attempt to lock and therefore does not participate in cycle detection.

Trait Implementations§

source§

impl<T: Clone> Clone for OnceLock<T>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug> Debug for OnceLock<T>

source§

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

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

impl<T> Default for OnceLock<T>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<T> From<T> for OnceLock<T>

source§

fn from(value: T) -> Self

Converts to this type from the input type.
source§

impl<T: PartialEq> PartialEq for OnceLock<T>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: Eq> Eq for OnceLock<T>

Auto Trait Implementations§

§

impl<T> !Freeze for OnceLock<T>

§

impl<T> RefUnwindSafe for OnceLock<T>

§

impl<T> Send for OnceLock<T>
where T: Send,

§

impl<T> Sync for OnceLock<T>
where T: Sync + Send,

§

impl<T> Unpin for OnceLock<T>
where T: Unpin,

§

impl<T> UnwindSafe for OnceLock<T>
where 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<!> for T

source§

fn from(t: !) -> T

Converts to this type from the input type.
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<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.