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.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".