Struct try_mutex::TryMutexGuard [] [src]

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

A RAII scoped lock on a TryMutex. When this this structure is dropped, the mutex will be unlocked.

Trait Implementations

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

The resulting type after dereferencing.

[src]

Dereferences the value.

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

[src]

Mutably dereferences the value.

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

[src]

Executes the destructor for this type. Read more

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

[src]

Formats the value using the given formatter. Read more

impl<'a, T: Display> Display for TryMutexGuard<'a, T>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a, T> Sync for TryMutexGuard<'a, T>
[src]

Auto Trait Implementations

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