pub trait Writable: Copy {
    fn write(&self, output: &mut Vec<f32>);
    fn stride() -> usize;
}

Required Methods

Implementations on Foreign Types

Implementors