1.0.0[−][src]Trait std::borrow::BorrowMut
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
ⓘImportant traits for &'_ mut Ffn borrow_mut(&mut self) -> &mut Borrowed
ⓘImportant traits for &'_ mut F
Implementors
impl BorrowMut<str> for String
[src]
fn borrow_mut(&mut self) -> &mut str
[src]
impl<'_, T> BorrowMut<T> for &'_ mut T where
T: ?Sized,
[src]
T: ?Sized,
ⓘImportant traits for &'_ mut Ffn borrow_mut(&mut self) -> &mut T
[src]
ⓘImportant traits for &'_ mut F
impl<T> BorrowMut<[T]> for Vec<T>
[src]
impl<T> BorrowMut<T> for Box<T> where
T: ?Sized,
[src]
T: ?Sized,
ⓘImportant traits for &'_ mut Ffn borrow_mut(&mut self) -> &mut T
[src]
ⓘImportant traits for &'_ mut F
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
ⓘImportant traits for &'_ mut Ffn borrow_mut(&mut self) -> &mut T
[src]
ⓘImportant traits for &'_ mut F
impl<const N: usize, T> BorrowMut<[T]> for [T; N] where
[T; N]: LengthAtMost32,
[src]
[T; N]: LengthAtMost32,