[][src]Struct rtfm::Exclusive

pub struct Exclusive<'a, T>(pub &'a mut T);

Newtype over &'a mut T that implements the Mutex trait

The Mutex implementation for this type is a no-op, no critical section is created

Trait Implementations

impl<'a, T> Mutex for Exclusive<'a, T>[src]

type T = T

Data protected by the mutex

impl<'a, T> Deref for Exclusive<'a, T>[src]

type Target = T

The resulting type after dereferencing.

impl<'a, T> DerefMut for Exclusive<'a, T>[src]

impl<'a, T> Debug for Exclusive<'a, T> where
    T: Debug
[src]

impl<'a, T> Display for Exclusive<'a, T> where
    T: Display
[src]

Auto Trait Implementations

impl<'a, T> Send for Exclusive<'a, T> where
    T: Send

impl<'a, T> Sync for Exclusive<'a, T> where
    T: Sync

Blanket Implementations

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> From for T[src]

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

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

The type returned in the event of a conversion error.

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

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

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

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

impl<T> Same for T

type Output = T

Should always be Self