pub struct IntRef<'a> { /* private fields */ }
Available on crate feature
pkcs8
only.Expand description
Signed arbitrary precision ASN.1 INTEGER
reference type.
Provides direct access to the underlying big endian bytes which comprise an signed integer value.
Intended for use cases like very large integers that are used in cryptographic applications (e.g. keys, signatures).
Implementations§
Source§impl<'a> IntRef<'a>
impl<'a> IntRef<'a>
Trait Implementations§
Source§impl<'a> DecodeValue<'a> for IntRef<'a>
impl<'a> DecodeValue<'a> for IntRef<'a>
Source§impl<'a> EncodeValue for IntRef<'a>
impl<'a> EncodeValue for IntRef<'a>
Source§impl<'a> Ord for IntRef<'a>
impl<'a> Ord for IntRef<'a>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialOrd for IntRef<'a>
impl<'a> PartialOrd for IntRef<'a>
Source§impl<'a> RefToOwned<'a> for IntRef<'a>
impl<'a> RefToOwned<'a> for IntRef<'a>
Source§fn ref_to_owned(&self) -> <IntRef<'a> as RefToOwned<'a>>::Owned
fn ref_to_owned(&self) -> <IntRef<'a> as RefToOwned<'a>>::Owned
Creates a new object taking ownership of the data
Source§impl<'__der, 'a> TryFrom<&'__der Any> for IntRef<'a>where
'__der: 'a,
Available on crate feature alloc
only.
impl<'__der, 'a> TryFrom<&'__der Any> for IntRef<'a>where
'__der: 'a,
Available on crate feature
alloc
only.impl<'a> Copy for IntRef<'a>
impl<'a> Eq for IntRef<'a>
impl<'a> StructuralPartialEq for IntRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for IntRef<'a>
impl<'a> RefUnwindSafe for IntRef<'a>
impl<'a> Send for IntRef<'a>
impl<'a> Sync for IntRef<'a>
impl<'a> Unpin for IntRef<'a>
impl<'a> UnwindSafe for IntRef<'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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
Source§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
Source§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.
Source§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
.
Source§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.