Trait dsp::conv::ToFrameSliceMut [] [src]

pub trait ToFrameSliceMut<'a, F> where F: Frame {
    fn to_frame_slice_mut(self) -> Option<&'a mut [F]>;
}

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

Required Methods

fn to_frame_slice_mut(self) -> Option<&'a mut [F]>

Implementors