Trait dsp::conv::Duplex
[−]
[src]
pub trait Duplex<S>: FromSample<S> + ToSample<S> { }
Sample types which may be converted to and from some type S
.
Implementors
impl<S, T> Duplex<S> for T where T: FromSample<S> + ToSample<S>