pub trait UnmarshalAny: MarshalFixed + Default {
    fn unmarshal_fixed(&mut self, arr: &Self::ARRAY);

    fn unmarshal_fixed_val(arr: &Self::ARRAY) -> Self { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors