pub trait SpmiRegisterDef {
type Value: RegisterValue;
type Mode;
const ADDRESS: u16;
}Expand description
Base trait implemented by register definitions providing device-independent metadata.
Required Associated Constants§
Required Associated Types§
Sourcetype Value: RegisterValue
type Value: RegisterValue
The type representing the value of this register.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".