pub trait SignalWriter<T: SignalType> { // Required method fn write(&mut self, signal: &Signal<T>) -> Result<()>; }
Trait for writing signals to various destinations
Write a signal to the destination