Trait as_slice::AsMutSlice[][src]

pub trait AsMutSlice: AsSlice {
    fn as_mut_slice(&mut self) -> &mut [Self::Element];
}

Something that can be seen as an mutable slice

Required methods

fn as_mut_slice(&mut self) -> &mut [Self::Element][src]

Returns the mutable slice view of Self

Loading content...

Implementors

impl<'a, S: ?Sized> AsMutSlice for &'a mut S where
    S: AsMutSlice
[src]

impl<T> AsMutSlice for [T][src]

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

Loading content...