pub struct UintRef<'a> { /* private fields */ }
Available on crate feature
pkcs8
only.Expand description
Unsigned arbitrary precision ASN.1 INTEGER
reference 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§
§impl<'a> DecodeValue<'a> for UintRef<'a>
impl<'a> DecodeValue<'a> for UintRef<'a>
§impl<'a> EncodeValue for UintRef<'a>
impl<'a> EncodeValue for UintRef<'a>
§impl<'a> Ord for UintRef<'a>
impl<'a> Ord for UintRef<'a>
§impl<'a> PartialEq for UintRef<'a>
impl<'a> PartialEq for UintRef<'a>
§impl<'a> PartialOrd for UintRef<'a>
impl<'a> PartialOrd for UintRef<'a>
§fn partial_cmp(&self, other: &UintRef<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &UintRef<'a>) -> Option<Ordering>
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§impl<'a> RefToOwned<'a> for UintRef<'a>
impl<'a> RefToOwned<'a> for UintRef<'a>
§fn ref_to_owned(&self) -> <UintRef<'a> as RefToOwned<'a>>::Owned
fn ref_to_owned(&self) -> <UintRef<'a> as RefToOwned<'a>>::Owned
Creates a new object taking ownership of the data
§impl<'__der, 'a> TryFrom<&'__der Any> for UintRef<'a>where
'__der: 'a,
Available on crate feature alloc
only.
impl<'__der, 'a> TryFrom<&'__der Any> for UintRef<'a>where
'__der: 'a,
Available on crate feature
alloc
only.impl<'a> Copy for UintRef<'a>
impl<'a> Eq for UintRef<'a>
impl<'a> StructuralPartialEq for UintRef<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for UintRef<'a>
impl<'a> Send for UintRef<'a>
impl<'a> Sync for UintRef<'a>
impl<'a> Unpin for UintRef<'a>
impl<'a> UnwindSafe for UintRef<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<'a, T> Choice<'a> for T
impl<'a, T> Choice<'a> for T
§fn can_decode(tag: Tag) -> bool
fn can_decode(tag: Tag) -> bool
Is the provided
Tag
decodable as a variant of this CHOICE
?§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
§fn encoded_len(&self) -> Result<Length, Error>
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this value in bytes when encoded as ASN.1 DER.
§fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer
.
§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.