Struct oncemutex::OnceMutexGuard [] [src]

pub struct OnceMutexGuard<'a, T: 'a> { /* fields omitted */ }

A guard providing a one-time lock on a OnceMutex.

Trait Implementations

impl<'a, T: Send + Sync> DerefMut for OnceMutexGuard<'a, T>
[src]

The method called to mutably dereference a value

impl<'a, T: Send + Sync> Deref for OnceMutexGuard<'a, T>
[src]

The resulting type after dereferencing

The method called to dereference a value

impl<'a, T> Drop for OnceMutexGuard<'a, T>
[src]

A method called when the value goes out of scope. Read more