Macro impl_LittleEndianBytes

Source
macro_rules! impl_LittleEndianBytes {
    [$($type:ty),+] => { ... };
}
Expand description

This macro implements the LittleEndianBytes trait for a provided list of types.

ยงAssumptions

Each type for which this macro is executed must provide a from_le_bytes and to_le_bytes function.