pub trait Deserialize<'a> {
type RefType;
const FIXED_WORDS: usize;
// Required methods
fn deserialize_from(words: &'a [u32]) -> Self::RefType;
fn from_ref(val: &Self::RefType) -> Self;
}Required Associated Constants§
const FIXED_WORDS: usize
Required Associated Types§
Required Methods§
fn deserialize_from(words: &'a [u32]) -> Self::RefType
fn from_ref(val: &Self::RefType) -> 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.