Trait sample::conv::FromSampleSliceMut [] [src]

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

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

Required Methods

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

Implementors