pub trait IntoSample<S> {
    fn into_sample(self) -> S;
}
Expand description

For converting samples between types.

Required Methods§

Convert to S a sample type from self.

Implementors§