pub trait ArrayDecoding {
    type Output: ArrayEncoding + Integer;

    fn into_uint_be(self) -> Self::Output;
    fn into_uint_le(self) -> Self::Output;
}
Expand description

Support for decoding a GenericArray as a big integer.

Required Associated Types§

Big integer which decodes a GenericArray.

Required Methods§

Deserialize from a big-endian GenericArray.

Deserialize from a little-endian GenericArray.

Implementations on Foreign Types§

Implementors§