pub enum Endianness {
BigEndian = 1,
LittleEndian = 0,
}
Available on crate feature
unstable
only.Expand description
State matrix endianness
Variants§
BigEndian = 1
Big endian (most-significant byte at the smallest address)
LittleEndian = 0
Little endian (least-significant byte at the smallest address)