pub trait AsMutSlice<T> {
    fn as_mut_slice(&mut self) -> &mut [T]Notable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8];
}
Expand description

Can be converted to a mutable slice

Required Methods

Convert to a slice

Implementors