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> !Send for SgxMutexGuard<'a, T>
impl<'a, T: ?Sized + Sync> Sync for SgxMutexGuard<'a, T>
[src]
impl<'a, T: ?Sized + Sync> Sync for SgxMutexGuard<'a, T>
impl<'mutex, T: ?Sized> Deref for SgxMutexGuard<'mutex, T>
[src]
impl<'mutex, T: ?Sized> Deref for SgxMutexGuard<'mutex, T>
type Target = T
The resulting type after dereferencing.
fn deref(&self) -> &T
[src]
fn deref(&self) -> &T
Dereferences the value.
impl<'mutex, T: ?Sized> DerefMut for SgxMutexGuard<'mutex, T>
[src]
impl<'mutex, T: ?Sized> DerefMut for SgxMutexGuard<'mutex, T>
impl<'a, T: ?Sized> Drop for SgxMutexGuard<'a, T>
[src]
impl<'a, T: ?Sized> Drop for SgxMutexGuard<'a, T>
impl<'a, T: ?Sized + Debug> Debug for SgxMutexGuard<'a, T>
[src]
impl<'a, T: ?Sized + Debug> Debug for SgxMutexGuard<'a, T>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<'a, T: ?Sized + Display> Display for SgxMutexGuard<'a, T>
[src]
impl<'a, T: ?Sized + Display> Display for SgxMutexGuard<'a, T>