pub trait ReadExt: Read {
// Provided method
fn read_to_new_string(&mut self) -> IoResult<String> { ... }
}Provided Methods§
fn read_to_new_string(&mut self) -> IoResult<String>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".