pub struct Partial {
pub table: String,
pub where_sql: String,
}Expand description
A partial-pushdown plan: the leading row predicates as a WHERE
clause for table’s fetch. The caller runs the original query
against the filtered adapter — the engine re-applies the pushed
predicates (a no-op on pre-filtered rows), so no rewriting.
Fields§
§table: String§where_sql: StringAuto Trait Implementations§
impl Freeze for Partial
impl RefUnwindSafe for Partial
impl Send for Partial
impl Sync for Partial
impl Unpin for Partial
impl UnsafeUnpin for Partial
impl UnwindSafe for Partial
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