pub struct Operation {
pub table: String,
pub row_id: String,
pub op: Op,
pub base_version: Option<i64>,
pub payload: Option<Vec<u8>>,
}Expand description
Push operation record (§6.1).
Fields§
§table: String§row_id: String§op: Op§base_version: Option<i64>§payload: Option<Vec<u8>>Row-codec bytes, opaque at the envelope layer (§1.7).
Trait Implementations§
impl StructuralPartialEq for Operation
Auto Trait Implementations§
impl Freeze for Operation
impl RefUnwindSafe for Operation
impl Send for Operation
impl Sync for Operation
impl Unpin for Operation
impl UnsafeUnpin for Operation
impl UnwindSafe for Operation
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