pub trait OutputBus {
type Word: Copy;
// Required method
fn set_value(&mut self, value: Self::Word) -> Result<(), DisplayError>;
}
Expand description
This trait represents the data pins of a parallel bus.
See Generic8BitBus and Generic16BitBus for generic implementations.