pub trait ClientMessage: Send { // Required method fn encode(&self, buf: &mut BytesMut); }
Trait representing an NT message/packet headed Client –> Server
Encodes Self into the given buf
Self
buf