pub struct AuditRow {
pub seq: i64,
pub ts_ms: i64,
pub prev_hash_hex: String,
pub entry_hash_hex: String,
pub sql: String,
}Expand description
v6.5.3 — one row of spg_audit_chain. Engine-public so
spg-server can construct rows directly from AuditEntry.
Fields§
§seq: i64§ts_ms: i64§prev_hash_hex: String§entry_hash_hex: String§sql: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for AuditRow
impl RefUnwindSafe for AuditRow
impl Send for AuditRow
impl Sync for AuditRow
impl Unpin for AuditRow
impl UnsafeUnpin for AuditRow
impl UnwindSafe for AuditRow
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