Trait Data
pub trait Data {}Expand
The Data trait is implemented by any type whose bit representation can be interpreted as data.
For now, this means that the value can be stored in a register and passed through a multiplexer.
Data is automatically implemented by the compiler, analogous to an auto trait in Rust. It
should not be implemented manually.