Trait alloc::borrow::BorrowMut 1.0.0[−][src]
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.
Required methods
pub fn borrow_mut(&mut self) -> &mut Borrowed[src]
Implementors
impl BorrowMut<str> for String1.36.0[src]
fn borrow_mut(&mut self) -> &mut str[src]
impl<'_, T> BorrowMut<T> for &'_ mut T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,