Trait dsp::conv::FromSampleSlice [] [src]

pub trait FromSampleSlice<'a, S> where S: Sample {
    fn from_sample_slice(slice: &'a [S]) -> Option<Self>;
}

For converting from a slice of Samples to a slice of Frames.

Required Methods

fn from_sample_slice(slice: &'a [S]) -> Option<Self>

Implementors