pub trait IntoSample<S> {
// Required method
fn into_sample(self) -> S;
}Expand description
For converting samples between types.
Required Methods§
Sourcefn into_sample(self) -> S
fn into_sample(self) -> S
Convert to S a sample type from self.