1 2 3 4 5 6
use std::fmt::Debug; pub trait Register: Clone + From<u32> + Into<u32> + Sized + Debug { const ADDRESS: u8; const NAME: &'static str; }