pub struct LedgerAuditEntry {
pub timestamp: String,
pub action: String,
pub scope: LedgerScope,
pub project_key: Option<String>,
pub record_id: String,
pub summary: String,
}Expand description
Append-only audit entry, one JSONL line per ledger mutation.
Fields§
§timestamp: String§action: String§scope: LedgerScope§project_key: Option<String>§record_id: String§summary: StringTrait Implementations§
Source§impl Clone for LedgerAuditEntry
impl Clone for LedgerAuditEntry
Source§fn clone(&self) -> LedgerAuditEntry
fn clone(&self) -> LedgerAuditEntry
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 Debug for LedgerAuditEntry
impl Debug for LedgerAuditEntry
Source§impl<'de> Deserialize<'de> for LedgerAuditEntry
impl<'de> Deserialize<'de> for LedgerAuditEntry
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 LedgerAuditEntry
impl RefUnwindSafe for LedgerAuditEntry
impl Send for LedgerAuditEntry
impl Sync for LedgerAuditEntry
impl Unpin for LedgerAuditEntry
impl UnsafeUnpin for LedgerAuditEntry
impl UnwindSafe for LedgerAuditEntry
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