pub struct CtEntry {
pub cert_hash_hex: String,
pub issuer: String,
pub submitted_at: DateTime<Utc>,
pub signature_hex: Option<String>,
}Expand description
A CT log entry to be submitted.
Fields§
§cert_hash_hex: StringCertificate or event hash (SHA-256).
issuer: StringIssuer name.
submitted_at: DateTime<Utc>Submission timestamp.
signature_hex: Option<String>Optional signature (e.g., from threshold key).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CtEntry
impl<'de> Deserialize<'de> for CtEntry
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 CtEntry
impl RefUnwindSafe for CtEntry
impl Send for CtEntry
impl Sync for CtEntry
impl Unpin for CtEntry
impl UnsafeUnpin for CtEntry
impl UnwindSafe for CtEntry
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