pub struct SignedCertificateTimestamp<'a> { /* private fields */ }Expand description
Details of a signed certificate timestamp (SCT).
Implementations§
Source§impl<'a> SignedCertificateTimestamp<'a>
impl<'a> SignedCertificateTimestamp<'a>
pub fn builder( status: impl Into<Cow<'a, str>>, origin: impl Into<Cow<'a, str>>, logDescription: impl Into<Cow<'a, str>>, logId: impl Into<Cow<'a, str>>, timestamp: f64, hashAlgorithm: impl Into<Cow<'a, str>>, signatureAlgorithm: impl Into<Cow<'a, str>>, signatureData: impl Into<Cow<'a, str>>, ) -> SignedCertificateTimestampBuilder<'a>
pub fn status(&self) -> &str
pub fn origin(&self) -> &str
pub fn logDescription(&self) -> &str
pub fn logId(&self) -> &str
pub fn timestamp(&self) -> f64
pub fn hashAlgorithm(&self) -> &str
pub fn signatureAlgorithm(&self) -> &str
pub fn signatureData(&self) -> &str
Trait Implementations§
Source§impl<'a> Clone for SignedCertificateTimestamp<'a>
impl<'a> Clone for SignedCertificateTimestamp<'a>
Source§fn clone(&self) -> SignedCertificateTimestamp<'a>
fn clone(&self) -> SignedCertificateTimestamp<'a>
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<'a> Debug for SignedCertificateTimestamp<'a>
impl<'a> Debug for SignedCertificateTimestamp<'a>
Source§impl<'a> Default for SignedCertificateTimestamp<'a>
impl<'a> Default for SignedCertificateTimestamp<'a>
Source§fn default() -> SignedCertificateTimestamp<'a>
fn default() -> SignedCertificateTimestamp<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for SignedCertificateTimestamp<'a>
impl<'de, 'a> Deserialize<'de> for SignedCertificateTimestamp<'a>
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<'a> Freeze for SignedCertificateTimestamp<'a>
impl<'a> RefUnwindSafe for SignedCertificateTimestamp<'a>
impl<'a> Send for SignedCertificateTimestamp<'a>
impl<'a> Sync for SignedCertificateTimestamp<'a>
impl<'a> Unpin for SignedCertificateTimestamp<'a>
impl<'a> UnsafeUnpin for SignedCertificateTimestamp<'a>
impl<'a> UnwindSafe for SignedCertificateTimestamp<'a>
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