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