Struct sgx_tstd::sync::SgxMutexGuard[][src]

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

An RAII implementation of a "scoped lock" of a mutex. When this structure is dropped (falls out of scope), the lock will be unlocked.

The data protected by the mutex can be accessed through this guard via its Deref and DerefMut implementations.

This structure is created by the lock and try_lock methods on Mutex.

Trait Implementations

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

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

impl<'mutex, T: ?Sized> Deref for SgxMutexGuard<'mutex, T>
[src]

The resulting type after dereferencing.

Dereferences the value.

impl<'mutex, T: ?Sized> DerefMut for SgxMutexGuard<'mutex, T>
[src]

Mutably dereferences the value.

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

Executes the destructor for this type. Read more

impl<'a, T: ?Sized + Debug> Debug for SgxMutexGuard<'a, T>
[src]

Formats the value using the given formatter. Read more

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

Formats the value using the given formatter. Read more