pub trait Reader: Send + Sync { // Required method fn next_packet(&mut self) -> Result<&[u8], Box<dyn Error>>; }
Trait describing a packet reader
Should return the next packet off of the wire