pub struct Exclusive<'a, T>(pub &'a mut T);
Expand description
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
Tuple Fields§
§0: &'a mut T
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for Exclusive<'a, T>
impl<'a, T> RefUnwindSafe for Exclusive<'a, T>where
T: RefUnwindSafe,
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>
impl<'a, T> !UnwindSafe for Exclusive<'a, T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more