Struct datafusion_physical_plan::joins::utils::ColumnIndex
source · pub struct ColumnIndex {
pub index: usize,
pub side: JoinSide,
}Expand description
Information about the index and placement (left or right) of the columns
Fields§
§index: usizeIndex of the column
side: JoinSideWhether the column is at the left or right side
Trait Implementations§
source§impl Clone for ColumnIndex
impl Clone for ColumnIndex
source§fn clone(&self) -> ColumnIndex
fn clone(&self) -> ColumnIndex
Returns a copy 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 moresource§impl Debug for ColumnIndex
impl Debug for ColumnIndex
source§impl PartialEq for ColumnIndex
impl PartialEq for ColumnIndex
source§fn eq(&self, other: &ColumnIndex) -> bool
fn eq(&self, other: &ColumnIndex) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ColumnIndex
Auto Trait Implementations§
impl RefUnwindSafe for ColumnIndex
impl Send for ColumnIndex
impl Sync for ColumnIndex
impl Unpin for ColumnIndex
impl UnwindSafe for ColumnIndex
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