[][src]Struct futures::lock::Mutex

pub struct Mutex<T> { /* fields omitted */ }

A futures-aware mutex.

Methods

impl<T> Mutex<T>
[src]

Creates a new futures-aware mutex.

Attempt to acquire the lock immediately.

If the lock is currently held, this will return None.

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]

impl<T> Debug for Mutex<T>
[src]

impl<T> Sync for Mutex<T> where
    T: Send
[src]

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]