pub trait Packet {
    fn bound() -> PacketBound;
    fn state() -> PacketState;
    fn id() -> i32;
}

Required Methods

Implementors