pub trait AddressCommand: Command + Sized {
    fn address(&self) -> u32;
    fn command(&self) -> u32;
    fn create(addr: u32, cmd: u32) -> Option<Self>;
}
Expand description

Command with address and command part

Required Methods§

Get the adress

Get the command

Create

Implementors§