pub trait Register {
    type Address;

    const ADDRESS: Self::Address;
}
Expand description

Trait of a register containing an address

Required Associated Types

Type of the adress, can be used to constrain the registers accepted

Required Associated Constants

The address of the register

Implementors