pub struct OcspRequest {
pub tbs_request: TbsRequest,
pub optional_signature: Option<Signature>,
}
Expand description
OCSPRequest structure as defined in RFC 6960 Section 4.1.1.
OCSPRequest ::= SEQUENCE {
tbsRequest TBSRequest,
optionalSignature [0] EXPLICIT Signature OPTIONAL }
Fields§
§tbs_request: TbsRequest
§optional_signature: Option<Signature>
Implementations§
Trait Implementations§
Source§impl Clone for OcspRequest
impl Clone for OcspRequest
Source§fn clone(&self) -> OcspRequest
fn clone(&self) -> OcspRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OcspRequest
impl Debug for OcspRequest
Source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for OcspRequest
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for OcspRequest
Source§impl<'__der_lifetime> EncodeValue for OcspRequest
impl<'__der_lifetime> EncodeValue for OcspRequest
Source§impl PartialEq for OcspRequest
impl PartialEq for OcspRequest
impl Eq for OcspRequest
impl<'__der_lifetime> Sequence<'__der_lifetime> for OcspRequest
impl StructuralPartialEq for OcspRequest
Auto Trait Implementations§
impl Freeze for OcspRequest
impl RefUnwindSafe for OcspRequest
impl Send for OcspRequest
impl Sync for OcspRequest
impl Unpin for OcspRequest
impl UnwindSafe for OcspRequest
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.