pub trait AuxArrayElement: Copy {
    fn from_le_bytes(bytes: &[u8]) -> Option<Self>;
}
Expand description

Types that can be used in aux arrays.

Required Methods

Implementations on Foreign Types

Implementors