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
sourceimpl<'a> DecodeValue<'a> for UIntBytes<'a>
impl<'a> DecodeValue<'a> for UIntBytes<'a>
sourceimpl<'a> EncodeValue for UIntBytes<'a>
impl<'a> EncodeValue for UIntBytes<'a>
sourceimpl<'a> PartialOrd<UIntBytes<'a>> for UIntBytes<'a>
impl<'a> PartialOrd<UIntBytes<'a>> for UIntBytes<'a>
sourcefn partial_cmp(&self, other: &UIntBytes<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &UIntBytes<'a>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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
impl<'a> Copy for UIntBytes<'a>
impl<'a> Eq for UIntBytes<'a>
impl<'a> StructuralEq for UIntBytes<'a>
impl<'a> StructuralPartialEq for UIntBytes<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for UIntBytes<'a>
impl<'a> Send for UIntBytes<'a>
impl<'a> Sync for UIntBytes<'a>
impl<'a> Unpin for UIntBytes<'a>
impl<'a> UnwindSafe for UIntBytes<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more