pub enum AttCertIssuer {
V1Form(GeneralNames),
V2Form(Box<V2Form>),
}Expand description
Att cert issuer
AttCertIssuer ::= CHOICE {
v1Form GeneralNames, -- MUST NOT be used in this
-- profile
v2Form [0] V2Form -- v2 only
}Variants
V1Form(GeneralNames)
V2Form(Box<V2Form>)
Trait Implementations
sourceimpl Clone for AttCertIssuer
impl Clone for AttCertIssuer
sourcefn clone(&self) -> AttCertIssuer
fn clone(&self) -> AttCertIssuer
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for AttCertIssuer
impl Debug for AttCertIssuer
sourceimpl PartialEq<AttCertIssuer> for AttCertIssuer
impl PartialEq<AttCertIssuer> for AttCertIssuer
sourcefn eq(&self, other: &AttCertIssuer) -> bool
fn eq(&self, other: &AttCertIssuer) -> bool
impl Eq for AttCertIssuer
impl StructuralEq for AttCertIssuer
impl StructuralPartialEq for AttCertIssuer
Auto Trait Implementations
impl RefUnwindSafe for AttCertIssuer
impl Send for AttCertIssuer
impl Sync for AttCertIssuer
impl Unpin for AttCertIssuer
impl UnwindSafe for AttCertIssuer
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.