pub struct CertMetadata {
pub fingerprint_sha256: String,
pub issuer_distinguished_name: String,
pub subject_distinguished_name: String,
pub valid_from: String,
pub valid_to: String,
pub serial_hex: String,
}Fields§
§fingerprint_sha256: String§issuer_distinguished_name: String§subject_distinguished_name: String§valid_from: String§valid_to: String§serial_hex: StringTrait Implementations§
Source§impl Clone for CertMetadata
impl Clone for CertMetadata
Source§fn clone(&self) -> CertMetadata
fn clone(&self) -> CertMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CertMetadata
impl Debug for CertMetadata
Source§impl<'de> Deserialize<'de> for CertMetadata
impl<'de> Deserialize<'de> for CertMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CertMetadata
impl RefUnwindSafe for CertMetadata
impl Send for CertMetadata
impl Sync for CertMetadata
impl Unpin for CertMetadata
impl UnsafeUnpin for CertMetadata
impl UnwindSafe for CertMetadata
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