pub enum TreeDeltaOp {
Remove(String),
Upsert(TreeEntry),
}Expand description
A cumulative HDC1 operation against a materialized anchor.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for TreeDeltaOp
impl Clone for TreeDeltaOp
Source§fn clone(&self) -> TreeDeltaOp
fn clone(&self) -> TreeDeltaOp
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 TreeDeltaOp
impl Debug for TreeDeltaOp
impl Eq for TreeDeltaOp
Source§impl PartialEq for TreeDeltaOp
impl PartialEq for TreeDeltaOp
impl StructuralPartialEq for TreeDeltaOp
Auto Trait Implementations§
impl Freeze for TreeDeltaOp
impl RefUnwindSafe for TreeDeltaOp
impl Send for TreeDeltaOp
impl Sync for TreeDeltaOp
impl Unpin for TreeDeltaOp
impl UnsafeUnpin for TreeDeltaOp
impl UnwindSafe for TreeDeltaOp
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