Struct cdp::network::SignedCertificateTimestamp
[−]
[src]
pub struct SignedCertificateTimestamp<'a> {
pub status: Cow<'a, str>,
pub origin: Cow<'a, str>,
pub log_description: Cow<'a, str>,
pub log_id: Cow<'a, str>,
pub timestamp: TimeSinceEpoch,
pub hash_algorithm: Cow<'a, str>,
pub signature_algorithm: Cow<'a, str>,
pub signature_data: Cow<'a, str>,
}Details of a signed certificate timestamp (SCT).
Fields
status: Cow<'a, str>
Validation status.
origin: Cow<'a, str>
Origin.
log_description: Cow<'a, str>
Log name / description.
log_id: Cow<'a, str>
Log ID.
timestamp: TimeSinceEpoch
Issuance date.
hash_algorithm: Cow<'a, str>
Hash algorithm.
signature_algorithm: Cow<'a, str>
Signature algorithm.
signature_data: Cow<'a, str>
Signature data.
Trait Implementations
impl<'a> Clone for SignedCertificateTimestamp<'a>[src]
fn clone(&self) -> SignedCertificateTimestamp<'a>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<'a> Debug for SignedCertificateTimestamp<'a>[src]
impl<'a> PartialEq for SignedCertificateTimestamp<'a>[src]
fn eq(&self, __arg_0: &SignedCertificateTimestamp<'a>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &SignedCertificateTimestamp<'a>) -> bool[src]
This method tests for !=.