pub trait FromFrameSlice<'a, F>where
F: Frame,{
// Required method
fn from_frame_slice(slice: &'a [F]) -> Self;
}
Expand description
For converting from a slice of Frame
s to a slice of Sample
s.
Required Methods§
fn from_frame_slice(slice: &'a [F]) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.