Trait sample::conv::FromBoxedSampleSlice [] [src]

pub trait FromBoxedSampleSlice<S>: Sized where S: Sample {
    fn from_boxed_sample_slice(slice: Box<[S]>) -> Option<Self>;
}

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

Required Methods

fn from_boxed_sample_slice(slice: Box<[S]>) -> Option<Self>

Implementors