pub trait PortValue: Sized + Copy + From<Self::I> + Into<Self::I> {
type I: PortRaw;
}
Expand description
A value that can be written/read to/from IO ports.
It has to be convertible from/into the raw integer specified in PortValue::I.
Required Associated Types§
Object Safety§
This trait is not object safe.