pub trait SliceWrapper<T> {
    fn slice(&self) -> &[T]Notable traits for &mut [u8]impl Write for &mut [u8]impl Read for &[u8];

    fn len(&self) -> usize { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors