Struct try_lock::Locked [−][src]
#[must_use = "TryLock will immediately unlock if not used"]pub struct Locked<'a, T: 'a> { /* fields omitted */ }
A locked value acquired from a TryLock
.
The type represents an exclusive view at the underlying value. The lock is released when this type is dropped.
This type derefs to the underlying value.
Trait Implementations
Auto Trait Implementations
impl<'a, T> Send for Locked<'a, T> where
T: Send,
T: Send,
impl<'a, T> Sync for Locked<'a, T> where
T: Send,
T: Send,