pub struct TransactionBuffer {
pub id: TransactionId,
pub writes: DashMap<String, Vec<u8>>,
pub deletes: DashMap<String, ()>,
}Fields§
§id: TransactionId§writes: DashMap<String, Vec<u8>>§deletes: DashMap<String, ()>Implementations§
Trait Implementations§
Source§impl Clone for TransactionBuffer
impl Clone for TransactionBuffer
Source§fn clone(&self) -> TransactionBuffer
fn clone(&self) -> TransactionBuffer
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 moreAuto Trait Implementations§
impl Freeze for TransactionBuffer
impl !RefUnwindSafe for TransactionBuffer
impl Send for TransactionBuffer
impl Sync for TransactionBuffer
impl Unpin for TransactionBuffer
impl UnwindSafe for TransactionBuffer
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