pub struct OptimizedJoinPlan {
pub left_stream: String,
pub right_stream: String,
pub join_type: JoinType,
pub join_strategy: JoinStrategy,
pub optimizations: Vec<JoinOptimization>,
pub estimated_cost: f64,
pub explanation: String,
}Expand description
Join plan with optimization recommendations
Fields§
§left_stream: String§right_stream: String§join_type: JoinType§join_strategy: JoinStrategy§optimizations: Vec<JoinOptimization>§estimated_cost: f64§explanation: StringTrait Implementations§
Source§impl Clone for OptimizedJoinPlan
impl Clone for OptimizedJoinPlan
Source§fn clone(&self) -> OptimizedJoinPlan
fn clone(&self) -> OptimizedJoinPlan
Returns a duplicate of the value. Read more
1.0.0 · 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 Freeze for OptimizedJoinPlan
impl RefUnwindSafe for OptimizedJoinPlan
impl Send for OptimizedJoinPlan
impl Sync for OptimizedJoinPlan
impl Unpin for OptimizedJoinPlan
impl UnwindSafe for OptimizedJoinPlan
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> 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