pub trait Register: Sized + Clone + Copy {
    type InfoType: RegisterInfo<RegType = Self>;

    fn name(&self) -> Cow<'_, str>;
    fn info(&self) -> Self::InfoType;
    fn id(&self) -> u32;
}

Required Associated Types

Required Methods

Unique identifier for this Register.

MUST be in the range [0, 0x7fff_ffff]

Implementors