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.

Important traits for &'a mut R

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

Trait Implementations

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T: ?Sized> Send for Mutex<T> where
    T: Send

impl<T: ?Sized> Sync for Mutex<T> where
    T: Send