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

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

Required Methods

Provided Methods

Implementors