pub enum RevocationInfoChoice {
Crl(Box<CertificateList>),
Other(OtherRevocationInfoFormat),
}
Expand description
Revocation info choice.
RevocationInfoChoice ::= CHOICE {
crl CertificateList,
other [1] IMPLICIT OtherRevocationInfoFormat }
Variants§
Crl(Box<CertificateList>)
Other(OtherRevocationInfoFormat)
Trait Implementations§
Source§impl Clone for RevocationInfoChoice
impl Clone for RevocationInfoChoice
Source§fn clone(&self) -> RevocationInfoChoice
fn clone(&self) -> RevocationInfoChoice
Returns a duplicate 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 RevocationInfoChoice
impl Debug for RevocationInfoChoice
Source§impl PartialEq for RevocationInfoChoice
impl PartialEq for RevocationInfoChoice
impl Eq for RevocationInfoChoice
impl StructuralPartialEq for RevocationInfoChoice
Auto Trait Implementations§
impl !Freeze for RevocationInfoChoice
impl RefUnwindSafe for RevocationInfoChoice
impl Send for RevocationInfoChoice
impl Sync for RevocationInfoChoice
impl Unpin for RevocationInfoChoice
impl UnwindSafe for RevocationInfoChoice
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