pub struct OtherCertificateFormat {
pub other_cert_format: Oid,
pub other_cert: Option<()>,
}
Expand description
Other certificate format.
OtherCertificateFormat ::= SEQUENCE {
otherCertFormat OBJECT IDENTIFIER,
otherCert ANY DEFINED BY otherCertFormat }
Fields§
§other_cert_format: Oid
§other_cert: Option<()>
Implementations§
source§impl OtherCertificateFormat
impl OtherCertificateFormat
pub fn take_from<S: Source>( cons: &mut Constructed<'_, S> ) -> Result<Self, DecodeError<S::Error>>
Trait Implementations§
source§impl Clone for OtherCertificateFormat
impl Clone for OtherCertificateFormat
source§fn clone(&self) -> OtherCertificateFormat
fn clone(&self) -> OtherCertificateFormat
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 OtherCertificateFormat
impl Debug for OtherCertificateFormat
source§impl PartialEq for OtherCertificateFormat
impl PartialEq for OtherCertificateFormat
source§fn eq(&self, other: &OtherCertificateFormat) -> bool
fn eq(&self, other: &OtherCertificateFormat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for OtherCertificateFormat
impl StructuralEq for OtherCertificateFormat
impl StructuralPartialEq for OtherCertificateFormat
Auto Trait Implementations§
impl RefUnwindSafe for OtherCertificateFormat
impl Send for OtherCertificateFormat
impl Sync for OtherCertificateFormat
impl Unpin for OtherCertificateFormat
impl UnwindSafe for OtherCertificateFormat
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.