pub trait ReadTextwhere Self: Read,{ // Provided method fn read_text(&mut self) -> Result<String> { ... } }