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
impl Eq for AttCertIssuer
impl StructuralPartialEq for AttCertIssuer
Auto Trait Implementations§
impl Freeze for AttCertIssuer
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