[−][src]Struct futures::lock::Mutex
A futures-aware mutex.
Methods
impl<T> Mutex<T>
[src]
pub fn new(t: T) -> Mutex<T>
[src]
Creates a new futures-aware mutex.
pub fn try_lock(&self) -> Option<MutexGuard<T>>
[src]
Attempt to acquire the lock immediately.
If the lock is currently held, this will return None
.
pub fn lock(&self) -> MutexLockFuture<T>
[src]
Acquire the lock asynchronously.
This method returns a future that will resolve once the lock has been successfully acquired.
Trait Implementations
impl<T> Send for Mutex<T> where
T: Send,
[src]
T: Send,
impl<T> Default for Mutex<T> where
T: Default,
[src]
T: Default,
impl<T> Sync for Mutex<T> where
T: Send,
[src]
T: Send,
impl<T> Debug for Mutex<T>
[src]
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,