pub struct PreparedTx {
pub datoms: Vec<Datom>,
pub tempids: BTreeMap<TempId, EntityId>,
}Expand description
Successfully prepared transaction.
Fields§
§datoms: Vec<Datom>Resolved datoms.
tempids: BTreeMap<TempId, EntityId>Allocations/upserts for caller tempids.
Trait Implementations§
Source§impl Clone for PreparedTx
impl Clone for PreparedTx
Source§fn clone(&self) -> PreparedTx
fn clone(&self) -> PreparedTx
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 PreparedTx
impl Debug for PreparedTx
impl Eq for PreparedTx
Source§impl PartialEq for PreparedTx
impl PartialEq for PreparedTx
impl StructuralPartialEq for PreparedTx
Auto Trait Implementations§
impl Freeze for PreparedTx
impl RefUnwindSafe for PreparedTx
impl Send for PreparedTx
impl Sync for PreparedTx
impl Unpin for PreparedTx
impl UnsafeUnpin for PreparedTx
impl UnwindSafe for PreparedTx
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