pub struct TransparencyLogEntry {
pub log_index: LogIndex,
pub log_id: LogId,
pub kind_version: KindVersion,
pub integrated_time: i64,
pub inclusion_promise: Option<InclusionPromise>,
pub inclusion_proof: Option<InclusionProof>,
pub canonicalized_body: CanonicalizedBody,
}Expand description
A transparency log entry
Fields§
§log_index: LogIndexLog index
log_id: LogIdLog ID
kind_version: KindVersionKind and version of the entry
integrated_time: i64Integrated time (Unix timestamp) For Rekor V2 entries, this field may be omitted (defaults to 0)
inclusion_promise: Option<InclusionPromise>Inclusion promise (Signed Entry Timestamp)
inclusion_proof: Option<InclusionProof>Inclusion proof
canonicalized_body: CanonicalizedBodyCanonicalized body
Trait Implementations§
Source§impl Clone for TransparencyLogEntry
impl Clone for TransparencyLogEntry
Source§fn clone(&self) -> TransparencyLogEntry
fn clone(&self) -> TransparencyLogEntry
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 TransparencyLogEntry
impl Debug for TransparencyLogEntry
Source§impl<'de> Deserialize<'de> for TransparencyLogEntry
impl<'de> Deserialize<'de> for TransparencyLogEntry
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
Source§impl PartialEq for TransparencyLogEntry
impl PartialEq for TransparencyLogEntry
Source§impl Serialize for TransparencyLogEntry
impl Serialize for TransparencyLogEntry
impl StructuralPartialEq for TransparencyLogEntry
Auto Trait Implementations§
impl Freeze for TransparencyLogEntry
impl RefUnwindSafe for TransparencyLogEntry
impl Send for TransparencyLogEntry
impl Sync for TransparencyLogEntry
impl Unpin for TransparencyLogEntry
impl UnsafeUnpin for TransparencyLogEntry
impl UnwindSafe for TransparencyLogEntry
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