pub struct SignedCertificateTimestamp {
pub status: String,
pub origin: String,
pub logDescription: String,
pub logId: String,
pub timestamp: f64,
pub hashAlgorithm: String,
pub signatureAlgorithm: String,
pub signatureData: String,
}Expand description
Details of a signed certificate timestamp (SCT).
Fields§
§status: StringValidation status.
origin: StringOrigin.
logDescription: StringLog name / description.
logId: StringLog ID.
timestamp: f64Issuance date. Unlike TimeSinceEpoch, this contains the number of milliseconds since January 1, 1970, UTC, not the number of seconds.
hashAlgorithm: StringHash algorithm.
signatureAlgorithm: StringSignature algorithm.
signatureData: StringSignature data.
Trait Implementations§
Source§impl Clone for SignedCertificateTimestamp
impl Clone for SignedCertificateTimestamp
Source§fn clone(&self) -> SignedCertificateTimestamp
fn clone(&self) -> SignedCertificateTimestamp
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 moreSource§impl Debug for SignedCertificateTimestamp
impl Debug for SignedCertificateTimestamp
Source§impl Default for SignedCertificateTimestamp
impl Default for SignedCertificateTimestamp
Source§fn default() -> SignedCertificateTimestamp
fn default() -> SignedCertificateTimestamp
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignedCertificateTimestamp
impl<'de> Deserialize<'de> for SignedCertificateTimestamp
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 SignedCertificateTimestamp
impl RefUnwindSafe for SignedCertificateTimestamp
impl Send for SignedCertificateTimestamp
impl Sync for SignedCertificateTimestamp
impl Unpin for SignedCertificateTimestamp
impl UnsafeUnpin 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