pub struct Modification<'a, T> {
pub transaction_id: Option<u64>,
pub keys: Vec<ArcBytes<'a>>,
pub operation: Operation<'a, T>,
}
Expand description
A tree modification.
Fields§
§transaction_id: Option<u64>
The transaction ID to store with this change.
keys: Vec<ArcBytes<'a>>
The keys to operate upon.
operation: Operation<'a, T>
The operation to perform on the keys.
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for Modification<'a, T>where
T: Freeze,
impl<'a, T> !RefUnwindSafe for Modification<'a, T>
impl<'a, T> !Send for Modification<'a, T>
impl<'a, T> !Sync for Modification<'a, T>
impl<'a, T> Unpin for Modification<'a, T>where
T: Unpin,
impl<'a, T> !UnwindSafe for Modification<'a, T>
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