pub trait PwnIoWrite { // Required methods fn send(&mut self, data: &[u8]) -> Result<(), Error>; fn send_line(&mut self, data: &[u8]) -> Result<(), Error>; }
Trait for write IO operations
Attempts to write data to the stream
Attempts to write data to the stream followed by a newline character