pub struct V2Form {
pub issuer_name: Option<GeneralNames>,
pub base_certificate_id: Option<IssuerSerial>,
pub object_digest_info: Option<ObjectDigestInfo>,
}Expand description
V2 Form
V2Form ::= SEQUENCE {
issuerName GeneralNames OPTIONAL,
baseCertificateID [0] IssuerSerial OPTIONAL,
objectDigestInfo [1] ObjectDigestInfo OPTIONAL
-- issuerName MUST be present in this profile
-- baseCertificateID and objectDigestInfo MUST NOT
-- be present in this profile
}Fields
issuer_name: Option<GeneralNames>base_certificate_id: Option<IssuerSerial>object_digest_info: Option<ObjectDigestInfo>Trait Implementations
impl Eq for V2Form
impl StructuralEq for V2Form
impl StructuralPartialEq for V2Form
Auto Trait Implementations
impl RefUnwindSafe for V2Form
impl Send for V2Form
impl Sync for V2Form
impl Unpin for V2Form
impl UnwindSafe for V2Form
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.