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