Trait crypto_bigint::prelude::ArrayDecoding [−][src]
pub trait ArrayDecoding {
type Output: ArrayEncoding + Integer;
fn into_uint_be(self) -> Self::Output;
fn into_uint_le(self) -> Self::Output;
}This is supported on crate feature
generic-array only.Expand description
Support for decoding a GenericArray as a big integer.
Associated Types
type Output: ArrayEncoding + Integer
type Output: ArrayEncoding + Integer
Big integer which decodes a GenericArray.
Required methods
fn into_uint_be(self) -> Self::Output
fn into_uint_be(self) -> Self::Output
Deserialize from a big-endian GenericArray.
fn into_uint_le(self) -> Self::Output
fn into_uint_le(self) -> Self::Output
Deserialize from a little-endian GenericArray.