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§
source§impl Clone for AttCertIssuer
impl Clone for AttCertIssuer
source§fn clone(&self) -> AttCertIssuer
fn clone(&self) -> AttCertIssuer
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 AttCertIssuer
impl Debug for AttCertIssuer
source§impl PartialEq for AttCertIssuer
impl PartialEq for AttCertIssuer
source§fn eq(&self, other: &AttCertIssuer) -> bool
fn eq(&self, other: &AttCertIssuer) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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§
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.