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

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

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> Sync for Mutex<T> where
    T: Send
[src]

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

impl<T> Send 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]

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.