pub struct TxRecord {
pub t: u64,
pub tx_instant: i64,
pub datoms: Vec<Datom>,
}Expand description
One committed transaction record.
Fields§
§t: u64Monotonic transaction number.
tx_instant: i64Monotonic UTC millisecond timestamp.
datoms: Vec<Datom>Facts asserted/retracted by the transaction.
Trait Implementations§
impl Eq for TxRecord
impl StructuralPartialEq for TxRecord
Auto Trait Implementations§
impl Freeze for TxRecord
impl RefUnwindSafe for TxRecord
impl Send for TxRecord
impl Sync for TxRecord
impl Unpin for TxRecord
impl UnsafeUnpin for TxRecord
impl UnwindSafe for TxRecord
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