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