pub struct CertificateDetails {
pub subject: String,
pub issuer: String,
pub serial_number: String,
pub public_key: Option<PublicKeyInfo>,
}
Expand description
Certificate details
Fields§
§subject: String
Subject DN
issuer: String
Issuer DN
serial_number: String
Serial number (hex)
public_key: Option<PublicKeyInfo>
Public key info
Trait Implementations§
Source§impl Clone for CertificateDetails
impl Clone for CertificateDetails
Source§fn clone(&self) -> CertificateDetails
fn clone(&self) -> CertificateDetails
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 moreAuto Trait Implementations§
impl Freeze for CertificateDetails
impl RefUnwindSafe for CertificateDetails
impl Send for CertificateDetails
impl Sync for CertificateDetails
impl Unpin for CertificateDetails
impl UnwindSafe for CertificateDetails
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