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

A trait to convert a type into a mutable slice.

Required Methods

Convert to a mutable slice.

Implementations on Foreign Types

Implementors