Trait as_slice::AsMutSlice

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

Something that can be seen as an mutable slice

NOTE: This trait is implemented for arrays ([T; N]) of sizes 0 to 256 (inclusive). These implementations don’t show in the documentation because they would reduce readability.

Required Methods§

Returns the mutable slice view of Self

Implementations on Foreign Types§

Implementors§