pub struct SignedCertificateTimestamp { /* private fields */ }Available on crate features
Network and Debugger and Runtime and Security only.Expand description
Details of a signed certificate timestamp (SCT).
Implementations§
Source§impl SignedCertificateTimestamp
impl SignedCertificateTimestamp
pub fn builder() -> SignedCertificateTimestampBuilder
Sourcepub fn log_description(&self) -> &str
pub fn log_description(&self) -> &str
Log name / description.
Sourcepub fn timestamp(&self) -> &TimeSinceEpoch
pub fn timestamp(&self) -> &TimeSinceEpoch
Issuance date.
Sourcepub fn hash_algorithm(&self) -> &str
pub fn hash_algorithm(&self) -> &str
Hash algorithm.
Sourcepub fn signature_algorithm(&self) -> &str
pub fn signature_algorithm(&self) -> &str
Signature algorithm.
Sourcepub fn signature_data(&self) -> &str
pub fn signature_data(&self) -> &str
Signature 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<'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 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