pub trait LFSRStatic {
// Required method
fn sequence_length() -> u32;
}Expand description
A non-object-safe part of an LFSR
Required Methods§
Sourcefn sequence_length() -> u32
fn sequence_length() -> u32
Sequence length of this LFSR
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.