pub trait UnmarshalAny: MarshalFixed + Default {
// Required method
fn unmarshal_fixed(&mut self, arr: &Self::ARRAY);
// Provided method
fn unmarshal_fixed_val(arr: &Self::ARRAY) -> Self { ... }
}Required Methods§
fn unmarshal_fixed(&mut self, arr: &Self::ARRAY)
Provided Methods§
fn unmarshal_fixed_val(arr: &Self::ARRAY) -> Self
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.