pub struct EvidenceLedgerEntry {
pub entry_id: u64,
pub controller_id: ControllerId,
pub snapshot_id: Option<SnapshotId>,
pub event: LedgerEvent,
pub policy_id: String,
pub timestamp: Time,
}Expand description
An entry in the evidence ledger.
Fields§
§entry_id: u64Sequential entry ID.
controller_id: ControllerIdController ID this entry pertains to.
snapshot_id: Option<SnapshotId>Snapshot ID at the time of the event (if available).
event: LedgerEventType of event.
policy_id: StringPolicy ID governing this event.
timestamp: TimeTimestamp (logical).
Trait Implementations§
Source§impl Clone for EvidenceLedgerEntry
impl Clone for EvidenceLedgerEntry
Source§fn clone(&self) -> EvidenceLedgerEntry
fn clone(&self) -> EvidenceLedgerEntry
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 EvidenceLedgerEntry
impl Debug for EvidenceLedgerEntry
Source§impl<'de> Deserialize<'de> for EvidenceLedgerEntry
impl<'de> Deserialize<'de> for EvidenceLedgerEntry
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 EvidenceLedgerEntry
impl RefUnwindSafe for EvidenceLedgerEntry
impl Send for EvidenceLedgerEntry
impl Sync for EvidenceLedgerEntry
impl Unpin for EvidenceLedgerEntry
impl UnsafeUnpin for EvidenceLedgerEntry
impl UnwindSafe for EvidenceLedgerEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, _span: NoopSpan) -> Self
fn instrument(self, _span: NoopSpan) -> Self
Instruments this future with a span (no-op when disabled).
Source§fn in_current_span(self) -> Self
fn in_current_span(self) -> Self
Instruments this future with the current span (no-op when disabled).