Trait debruijn::vmer::Array[][src]

pub trait Array {
    type Item;
    fn new() -> Self;
fn size() -> usize;
fn as_slice(&self) -> &[Self::Item];
fn as_mut_slice(&mut self) -> &mut [Self::Item]; }
Expand description

Types that can be used as the backing store for a SmallVec

Associated Types

Required methods

Implementations on Foreign Types

Implementors