pub trait AsReg: Clone + Debug {
// Required methods
fn new(enc: u8) -> Self;
fn enc(&self) -> u8;
// Provided method
fn to_string(&self, size: Option<Size>) -> String { ... }
}
Expand description
Describe how to interact with an external register type.
Required Methods§
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.