Trait dasp_sample::conv::Duplex

source ·
pub trait Duplex<S>: FromSample<S> + ToSample<S> { }
Expand description

Sample types which may be converted to and from some type S.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<S, T> Duplex<S> for T
where T: FromSample<S> + ToSample<S>,