[−][src]Struct futures::lock::Mutex
A futures-aware mutex.
Methods
impl<T> Mutex<T>
[src][−]
impl<T> Mutex<T> where
T: ?Sized,
[src][−]
T: ?Sized,
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
.
ⓘImportant traits for MutexLockFuture<'a, T>pub fn lock(&self) -> MutexLockFuture<T>
[src][−]
ⓘImportant traits for MutexLockFuture<'a, T>
Acquire the lock asynchronously.
This method returns a future that will resolve once the lock has been successfully acquired.
Trait Implementations
impl<T> Default for Mutex<T> where
T: Default,
[src][+]
T: Default,
impl<T> Debug for Mutex<T> where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Sync for Mutex<T> where
T: Send + ?Sized,
[src]
T: Send + ?Sized,
impl<T> Send for Mutex<T> where
T: Send + ?Sized,
[src]
T: Send + ?Sized,
Auto Trait Implementations
impl<T: ?Sized> Unpin for Mutex<T> where
T: Unpin,
T: Unpin,
impl<T: ?Sized> UnwindSafe for Mutex<T> where
T: UnwindSafe,
T: UnwindSafe,
impl<T> !RefUnwindSafe for Mutex<T>
Blanket Implementations
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[+]
V: MultiLane<T>,