pub struct DeltaOp {
pub target_fid: FieldId,
pub operation: DeltaOperation,
pub payload: Vec<u8>,
}Expand description
Represents a single delta operation
Fields§
§target_fid: FieldIdTarget field identifier
operation: DeltaOperationOperation type
payload: Vec<u8>Payload data (encoded value or nested operations)
Implementations§
Trait Implementations§
impl StructuralPartialEq for DeltaOp
Auto Trait Implementations§
impl Freeze for DeltaOp
impl RefUnwindSafe for DeltaOp
impl Send for DeltaOp
impl Sync for DeltaOp
impl Unpin for DeltaOp
impl UnwindSafe for DeltaOp
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