pub struct UIntBytes<'a> { /* private fields */ }
Expand description
“Big” unsigned ASN.1 INTEGER
type.
Provides direct access to the underlying big endian bytes which comprise an unsigned integer value.
Intended for use cases like very large integers that are used in cryptographic applications (e.g. keys, signatures).
Implementations§
Trait Implementations§
source§impl<'a> DecodeValue<'a> for UIntBytes<'a>
impl<'a> DecodeValue<'a> for UIntBytes<'a>
source§impl<'a> EncodeValue for UIntBytes<'a>
impl<'a> EncodeValue for UIntBytes<'a>
source§impl<'a> PartialEq<UIntBytes<'a>> for UIntBytes<'a>
impl<'a> PartialEq<UIntBytes<'a>> for UIntBytes<'a>
source§impl<'a> PartialOrd<UIntBytes<'a>> for UIntBytes<'a>
impl<'a> PartialOrd<UIntBytes<'a>> for UIntBytes<'a>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more