pub trait MarshalFixed {
    type ARRAY: AsMut<[u8]> + AsRef<[u8]> + Default;

    const SIZE: usize;

    fn marshal_fixed(&self, arr: &mut Self::ARRAY);
}

Required Associated Types

Required Associated Constants

Required Methods

Implementations on Foreign Types

Implementors