pub trait ReadStringExt: ReadBytesExt {
// Provided method
fn read_string(&mut self) -> Result<String, NbsError> { ... }
}Provided Methods§
fn read_string(&mut self) -> Result<String, NbsError>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.