pub struct Rand<'a> {
    pub integer: UintRef<'a>,
    pub sender: GeneralName,
}Expand description
The Rand type is defined as a comment in the Challenge definition in
RFC 4210 Section 5.2.8.3.
   Rand ::= SEQUENCE {
       int      INTEGER,
       sender   GeneralName
  }Fields§
§integer: UintRef<'a>§sender: GeneralNameTrait Implementations§
Source§impl<'a> DecodeValue<'a> for Rand<'a>
 
impl<'a> DecodeValue<'a> for Rand<'a>
Source§impl<'a> EncodeValue for Rand<'a>
 
impl<'a> EncodeValue for Rand<'a>
impl<'a> Eq for Rand<'a>
impl<'a> Sequence<'a> for Rand<'a>
impl<'a> StructuralPartialEq for Rand<'a>
Auto Trait Implementations§
impl<'a> Freeze for Rand<'a>
impl<'a> RefUnwindSafe for Rand<'a>
impl<'a> Send for Rand<'a>
impl<'a> Sync for Rand<'a>
impl<'a> Unpin for Rand<'a>
impl<'a> UnwindSafe for Rand<'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.