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