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

Types that can be used in aux arrays.

Required Methods§

source

fn from_le_bytes(bytes: &[u8]) -> Option<Self>

Implementations on Foreign Types§

source§

impl AuxArrayElement for u16

source§

fn from_le_bytes(bytes: &[u8]) -> Option<Self>

source§

impl AuxArrayElement for u8

source§

fn from_le_bytes(bytes: &[u8]) -> Option<Self>

source§

impl AuxArrayElement for i8

source§

fn from_le_bytes(bytes: &[u8]) -> Option<Self>

source§

impl AuxArrayElement for i16

source§

fn from_le_bytes(bytes: &[u8]) -> Option<Self>

source§

impl AuxArrayElement for i32

source§

fn from_le_bytes(bytes: &[u8]) -> Option<Self>

source§

impl AuxArrayElement for u32

source§

fn from_le_bytes(bytes: &[u8]) -> Option<Self>

source§

impl AuxArrayElement for f32

source§

fn from_le_bytes(bytes: &[u8]) -> Option<Self>

Implementors§