pub trait ToSampleSliceMut<'a, S>where
S: Sample,{
// Required method
fn to_sample_slice_mut(self) -> &'a mut [S];
}Expand description
For converting from a mutable slice of Frames to a mutable slice of Samples.
Required Methods§
fn to_sample_slice_mut(self) -> &'a mut [S]
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".