pub struct CertificateInformation {
pub issued_at: SystemTime,
pub expires_at: SystemTime,
pub subject: String,
pub is_active: bool,
}Expand description
Basic information about an SSL certificate
Fields§
§issued_at: SystemTimeIssued at
expires_at: SystemTimeExpires at
subject: StringSubject
is_active: boolIs active
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CertificateInformation
impl RefUnwindSafe for CertificateInformation
impl Send for CertificateInformation
impl Sync for CertificateInformation
impl Unpin for CertificateInformation
impl UnsafeUnpin for CertificateInformation
impl UnwindSafe for CertificateInformation
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