pub struct SignedCertificateTimestamp {
    pub status: String,
    pub origin: String,
    pub log_description: String,
    pub log_id: String,
    pub timestamp: f64,
    pub hash_algorithm: String,
    pub signature_algorithm: String,
    pub signature_data: String,
}Expand description
Details of a signed certificate timestamp (SCT). SignedCertificateTimestamp
Fields§
§status: StringValidation status.
origin: StringOrigin.
log_description: StringLog name / description.
log_id: StringLog ID.
timestamp: f64Issuance date. Unlike TimeSinceEpoch, this contains the number of milliseconds since January 1, 1970, UTC, not the number of seconds.
hash_algorithm: StringHash algorithm.
signature_algorithm: StringSignature algorithm.
signature_data: StringSignature data.
Implementations§
source§impl SignedCertificateTimestamp
 
impl SignedCertificateTimestamp
pub const IDENTIFIER: &'static str = "Network.SignedCertificateTimestamp"
Trait Implementations§
source§impl Clone for SignedCertificateTimestamp
 
impl Clone for SignedCertificateTimestamp
source§fn clone(&self) -> SignedCertificateTimestamp
 
fn clone(&self) -> SignedCertificateTimestamp
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 SignedCertificateTimestamp
 
impl Debug for SignedCertificateTimestamp
source§impl<'de> Deserialize<'de> for SignedCertificateTimestamp
 
impl<'de> Deserialize<'de> for SignedCertificateTimestamp
source§fn deserialize<__D>(
    __deserializer: __D
) -> Result<SignedCertificateTimestamp, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D
) -> Result<SignedCertificateTimestamp, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for SignedCertificateTimestamp
 
impl PartialEq for SignedCertificateTimestamp
source§fn eq(&self, other: &SignedCertificateTimestamp) -> bool
 
fn eq(&self, other: &SignedCertificateTimestamp) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for SignedCertificateTimestamp
 
impl Serialize for SignedCertificateTimestamp
source§fn serialize<__S>(
    &self,
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
 
fn serialize<__S>(
    &self,
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for SignedCertificateTimestamp
Auto Trait Implementations§
impl Freeze for SignedCertificateTimestamp
impl RefUnwindSafe for SignedCertificateTimestamp
impl Send for SignedCertificateTimestamp
impl Sync for SignedCertificateTimestamp
impl Unpin for SignedCertificateTimestamp
impl UnwindSafe for SignedCertificateTimestamp
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