pub trait SkipOne: Codec {
// Required method
fn skip(&self, r: &mut ByteCursor) -> Result<(), String>;
}Expand description
A trait for codecs representing the ability to skip values.
Required Methods§
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.