pub trait Deserializeable {
// Required method
fn deserialize<R: DataInput + ?Sized>(
&mut self,
input: &mut R,
) -> Result<()>;
}
Expand description
A trait for types which can be deserialized from a stream of bytes according to LCS 4
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.