pub struct RefValMut<'b, T> { /* private fields */ }
Expand description
A type containing a value that contains a borrowed mutable reference
to a value from a RefCell<T>
.
See the module-level documentation for more.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'b, T> Freeze for RefValMut<'b, T>where
T: Freeze,
impl<'b, T> !RefUnwindSafe for RefValMut<'b, T>
impl<'b, T> !Send for RefValMut<'b, T>
impl<'b, T> !Sync for RefValMut<'b, T>
impl<'b, T> Unpin for RefValMut<'b, T>where
T: Unpin,
impl<'b, T> !UnwindSafe for RefValMut<'b, 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