Type Alias nstd_sys::mutex::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§

enum NSTDOptionalMutex<'a> {
    None,
    Some(NSTDMutex<'a>),
}

Variants§

§

None

The uninitialized variant.

§

Some(NSTDMutex<'a>)

The initialized variant.