pub trait SyncableGenerator<T: Transcendental>: Generator<T> {
// Required methods
fn sync(&mut self, reset: bool);
fn periods(&self) -> u32;
}Expand description
Generator with synchronization
Allows synchronizing multiple generators by phase or clock signal.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".