pub trait Sender: Send + Sync { // Required method fn send(&mut self, packet: &[u8]) -> Result<()>; }
Trait describing a packet sender
Should send a packet over the wire