pub struct FlushPlan {
pub deletes: Vec<PendingOp>,
pub inserts: Vec<PendingOp>,
pub updates: Vec<PendingOp>,
}Expand description
A plan for executing flush operations.
Fields§
§deletes: Vec<PendingOp>Delete operations (ordered child-first).
inserts: Vec<PendingOp>Insert operations (ordered parent-first).
updates: Vec<PendingOp>Update operations (any order).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlushPlan
impl RefUnwindSafe for FlushPlan
impl Send for FlushPlan
impl Sync for FlushPlan
impl Unpin for FlushPlan
impl UnsafeUnpin for FlushPlan
impl UnwindSafe for FlushPlan
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, _span: NoopSpan) -> Self
fn instrument(self, _span: NoopSpan) -> Self
Instruments this future with a span (no-op when disabled).
Source§fn in_current_span(self) -> Self
fn in_current_span(self) -> Self
Instruments this future with the current span (no-op when disabled).