NSTDOptionalMutex

Type Alias NSTDOptionalMutex 

Source
pub type NSTDOptionalMutex<'a> = NSTDOptional<NSTDMutex<'a>>;
Available on crate feature mutex only.
Expand description

Represents an optional value of type NSTDMutex.

Aliased Type§

#[repr(C, u8)]
pub enum NSTDOptionalMutex<'a> { None, Some(NSTDMutex<'a>), }

Variants§

§

None

The uninitialized variant.

§

Some(NSTDMutex<'a>)

The initialized variant.