Trait borsh::maybestd::borrow::BorrowMut1.0.0[][src]

pub trait BorrowMut<Borrowed>: Borrow<Borrowed> where
    Borrowed: ?Sized
{ pub fn borrow_mut(&mut self) -> &mut Borrowed

Notable traits for &'_ mut R

impl<'_, R> Read for &'_ mut R where
    R: Read + ?Sized
impl<'_, W> Write for &'_ mut W where
    W: Write + ?Sized
; }
[]

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

Notable traits for &'_ mut R

impl<'_, R> Read for &'_ mut R where
    R: Read + ?Sized
impl<'_, W> Write for &'_ mut W where
    W: Write + ?Sized
[src][]

Mutably borrows from an owned value.

Examples

use std::borrow::BorrowMut;

fn check<T: BorrowMut<[i32]>>(mut v: T) {
    assert_eq!(&mut [1, 2, 3], v.borrow_mut());
}

let v = vec![1, 2, 3];

check(v);

Implementations on Foreign Types

impl<T, const N: usize> BorrowMut<[T]> for [T; N][src][]

impl<'_, T> BorrowMut<T> for &'_ mut T where
    T: ?Sized
[src][]

Implementors

impl BorrowMut<str> for String1.36.0[src][+]

impl<T> BorrowMut<[T]> for Vec<T, Global>[src][+]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src][+]

impl<T, A> BorrowMut<T> for Box<T, A> where
    T: ?Sized,
    A: Allocator
1.1.0[src][+]

impl<A: Array> BorrowMut<[<A as Array>::Item]> for ArrayVec<A>

impl BorrowMut<AsciiStr> for AsciiString

impl<O, T> BorrowMut<BitSlice<O, T>> for BitBox<O, T> where
    O: BitOrder,
    T: BitStore

impl<O, T> BorrowMut<BitSlice<O, T>> for BitVec<O, T> where
    O: BitOrder,
    T: BitStore

impl BorrowMut<[u8]> for BytesMut

impl<T: ?Sized + Pointable> BorrowMut<T> for Owned<T>

impl<T, N> BorrowMut<[T]> for GenericArray<T, N> where
    N: ArrayLength<T>, 

impl BorrowMut<Bytes> for ByteBuf

impl<A: Array> BorrowMut<[<A as Array>::Item]> for SmallVec<A>

impl<A: Array> BorrowMut<[<A as Array>::Item]> for ArrayVec<A>

impl<'s, T> BorrowMut<[T]> for SliceVec<'s, T>

impl<A: Array> BorrowMut<[<A as Array>::Item]> for TinyVec<A>

impl<T> BorrowMut<Node<T>> for Tree<T>

impl<T> BorrowMut<Forest<T>> for Tree<T>

impl<T> BorrowMut<Node<T>> for Tree<T>

impl<T> BorrowMut<Forest<T>> for Tree<T>

impl<T> BorrowMut<Node<T>> for Tree<T>