pub trait SliceWrapper<T> {
    fn slice(&self) -> &[T];

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

Required methods

Provided methods

Implementors