pub trait Read { // Required methods fn read(&mut self, buf: &mut [u8]) -> Result<usize>; fn can_read(&self) -> bool; }