pub trait ToLittleEndian {
    fn to_le_bytes(&self) -> [u8; 32];
}
Expand description

Trait used to convert a scalar value to a 32 byte array in little endian.

Required Methods

Convert the value to a 32 byte array in little endian.

Implementors