pub struct DistributionPoint {
pub distribution_point: Option<DistributionPointName>,
pub reasons: Option<ReasonFlags>,
pub crl_issuer: Option<GeneralNames>,
}
Expand description
DistributionPoint as defined in RFC 5280 Section 4.2.1.13.
DistributionPoint ::= SEQUENCE {
distributionPoint [0] DistributionPointName OPTIONAL,
reasons [1] ReasonFlags OPTIONAL,
cRLIssuer [2] GeneralNames OPTIONAL }
Fields§
§distribution_point: Option<DistributionPointName>
§reasons: Option<ReasonFlags>
§crl_issuer: Option<GeneralNames>
Trait Implementations§
source§impl Clone for DistributionPoint
impl Clone for DistributionPoint
source§fn clone(&self) -> DistributionPoint
fn clone(&self) -> DistributionPoint
Returns a copy 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 DistributionPoint
impl Debug for DistributionPoint
source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for DistributionPoint
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for DistributionPoint
source§impl<'__der_lifetime> EncodeValue for DistributionPoint
impl<'__der_lifetime> EncodeValue for DistributionPoint
source§impl PartialEq for DistributionPoint
impl PartialEq for DistributionPoint
source§fn eq(&self, other: &DistributionPoint) -> bool
fn eq(&self, other: &DistributionPoint) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl ValueOrd for DistributionPoint
impl ValueOrd for DistributionPoint
impl Eq for DistributionPoint
impl<'__der_lifetime> Sequence<'__der_lifetime> for DistributionPoint
impl StructuralEq for DistributionPoint
impl StructuralPartialEq for DistributionPoint
Auto Trait Implementations§
impl RefUnwindSafe for DistributionPoint
impl Send for DistributionPoint
impl Sync for DistributionPoint
impl Unpin for DistributionPoint
impl UnwindSafe for DistributionPoint
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<'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.