Struct sgx_tstd::sync::SgxRwLockWriteGuard[][src]

pub struct SgxRwLockWriteGuard<'a, T: ?Sized + 'a> { /* fields omitted */ }

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

This structure is created by the [write] and [try_write] methods on [RwLock].

Trait Implementations

impl<'a, T: ?Sized> !Send for SgxRwLockWriteGuard<'a, T>
[src]

impl<'a, T: ?Sized + Sync> Sync for SgxRwLockWriteGuard<'a, T>
[src]

impl<'a, T: Debug> Debug for SgxRwLockWriteGuard<'a, T>
[src]

Formats the value using the given formatter. Read more

impl<'a, T: ?Sized + Display> Display for SgxRwLockWriteGuard<'a, T>
[src]

Formats the value using the given formatter. Read more

impl<'rwlock, T: ?Sized> Deref for SgxRwLockWriteGuard<'rwlock, T>
[src]

The resulting type after dereferencing.

Dereferences the value.

impl<'rwlock, T: ?Sized> DerefMut for SgxRwLockWriteGuard<'rwlock, T>
[src]

Mutably dereferences the value.

impl<'a, T: ?Sized> Drop for SgxRwLockWriteGuard<'a, T>
[src]

Executes the destructor for this type. Read more