Trait scale_info::prelude::borrow::BorrowMut

1.0.0 · source ·
pub trait BorrowMut<Borrowed>: Borrow<Borrowed>where
    Borrowed: ?Sized,
{ fn borrow_mut(&mut self) -> &mut Borrowed; }
Expand description

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§

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);

Implementors§

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

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

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>