pub struct RefMut<'t, T> { /* private fields */ }
Expand description
A mutable reference to the value contained in the channel. Receivers are notified when the borrow is released.
Trait Implementations
Auto Trait Implementations
impl<'t, T> !RefUnwindSafe for RefMut<'t, T>
impl<'t, T> !Send for RefMut<'t, T>
impl<'t, T> Sync for RefMut<'t, T> where
T: Send + Sync,
impl<'t, T> Unpin for RefMut<'t, T>
impl<'t, T> !UnwindSafe for RefMut<'t, T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more