pub trait PacketComponents: Debug + Eq + PartialEq {
    fn values(&self) -> (u16, u16);
    fn from_values(component: u16, command: u16, notify: bool) -> Self;
}

Required Methods

Implementors