pub trait PacketType: Sized {
    fn to_byte(&self) -> u8;
    fn from_byte(byte: u8) -> Option<Self>;
}

Required Methods

Implementors