Struct antidote::Mutex [] [src]

pub struct Mutex<T: ?Sized>(_);

Like std::sync::Mutex except that it does not poison itself.

Methods

impl<T> Mutex<T>
[src]

Like std::sync::Mutex::new.

Like std::sync::Mutex::into_inner.

impl<T: ?Sized> Mutex<T>
[src]

Like std::sync::Mutex::lock.

Like std::sync::Mutex::try_lock.

Like std::sync::Mutex::get_mut.

Trait Implementations

impl<T: ?Sized + Debug> Debug for Mutex<T>
[src]

Formats the value using the given formatter.