Struct websocket::async::futures::sync::BiLockGuard
[−]
[src]
pub struct BiLockGuard<'a, T> where
T: 'a, { /* fields omitted */ }
Returned RAII guard from the poll_lock
method.
This structure acts as a sentinel to the data in the BiLock<T>
itself,
implementing Deref
and DerefMut
to T
. When dropped, the lock will be
unlocked.
Trait Implementations
impl<'a, T> Debug for BiLockGuard<'a, T> where
T: 'a + Debug,
[src]
T: 'a + Debug,
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more
impl<'a, T> DerefMut for BiLockGuard<'a, T>
[src]
ⓘImportant traits for &'a mut Wfn deref_mut(&mut self) -> &mut T
[src]
ⓘImportant traits for &'a mut W
Mutably dereferences the value.
impl<'a, T> Deref for BiLockGuard<'a, T>
[src]
type Target = T
The resulting type after dereferencing.
ⓘImportant traits for &'a mut Wfn deref(&self) -> &T
[src]
ⓘImportant traits for &'a mut W
Dereferences the value.
impl<'a, T> Drop for BiLockGuard<'a, T>
[src]
Auto Trait Implementations
impl<'a, T> Send for BiLockGuard<'a, T> where
T: Send,
T: Send,
impl<'a, T> Sync for BiLockGuard<'a, T> where
T: Send,
T: Send,