[][src]Struct mutex_trait::Exclusive

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

Wraps a T and provides exclusive access via a Mutex impl.

This provides an no-op Mutex implementation for data that does not need a real mutex.

Methods

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

pub fn new(data: &'a mut T) -> Self[src]

Creates a new Exclusive object wrapping data.

pub fn into_inner(self) -> &'a mut T[src]

Consumes this Exclusive instance and returns the wrapped value.

Trait Implementations

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

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> From<&'a mut T> for Exclusive<'a, T>[src]

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

type Data = T

Data protected by the mutex.

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

impl<'a, T> Unpin for Exclusive<'a, T>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.