Struct shared_memory::WriteLockGuard[][src]

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

RAII structure used to release the write access of a lock when dropped.

Trait Implementations

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

Executes the destructor for this type. Read more

impl<'a, T> Deref for WriteLockGuard<'a, T>
[src]

The resulting type after dereferencing.

Dereferences the value.

impl<'a, T> DerefMut for WriteLockGuard<'a, T>
[src]

Mutably dereferences the value.

Auto Trait Implementations

impl<'a, T> !Send for WriteLockGuard<'a, T>

impl<'a, T> !Sync for WriteLockGuard<'a, T>