pub trait PacketComponent: Debug + Eq + PartialEq {
    fn command(&self) -> u16;
    fn from_value(value: u16, notify: bool) -> Self;
}
Expand description

Trait for implementing packet target details

Required Methods

Implementors