pub trait Modulator:
Default
+ Clone
+ Send {
type T;
// Required method
fn modulate<S>(&self, codeword: &ArrayBase<S, Ix1>) -> Vec<Self::T>
where S: Data<Elem = GF2>;
}
Expand description
Modulator.
This trait defines modulators, which can convert a sequence of bits into symbols.
Required Associated Types§
Required Methods§
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.