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

Trait uset do convert a scalar value to a 32 byte array in big endian.

Required Methods

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

Implementors