Trait core::borrow::BorrowMut 1.0.0[−][src]
pub trait BorrowMut<Borrowed: ?Sized>: Borrow<Borrowed> { fn borrow_mut(&mut self) -> &mut Borrowed; }
A trait for mutably borrowing data.
As a companion to Borrow<T> this trait allows a type to borrow as
an underlying type by providing a mutable reference. See Borrow<T>
for more information on borrowing as another type.