pub struct ExternalPlan {
pub filter_pushdown: Vec<TableProviderFilterPushDown>,
pub accepted_filters: Vec<AcceptedFilter>,
pub residual_filters_required: bool,
pub estimated_rows: Option<u64>,
pub estimated_cost: f64,
pub order_satisfied: bool,
pub opaque: Arc<dyn Any + Send + Sync>,
}Fields§
§filter_pushdown: Vec<TableProviderFilterPushDown>§accepted_filters: Vec<AcceptedFilter>§residual_filters_required: bool§estimated_rows: Option<u64>§estimated_cost: f64§order_satisfied: bool§opaque: Arc<dyn Any + Send + Sync>Implementations§
Trait Implementations§
Source§impl Clone for ExternalPlan
impl Clone for ExternalPlan
Source§fn clone(&self) -> ExternalPlan
fn clone(&self) -> ExternalPlan
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for ExternalPlan
impl !UnwindSafe for ExternalPlan
impl Freeze for ExternalPlan
impl Send for ExternalPlan
impl Sync for ExternalPlan
impl Unpin for ExternalPlan
impl UnsafeUnpin for ExternalPlan
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more