pub struct JoinData {
pub projected_left_child: ProjectionExec,
pub projected_right_child: ProjectionExec,
pub join_filter: Option<JoinFilter>,
pub join_on: JoinOn,
}Fields§
§projected_left_child: ProjectionExec§projected_right_child: ProjectionExec§join_filter: Option<JoinFilter>§join_on: JoinOnAuto Trait Implementations§
impl Freeze for JoinData
impl !RefUnwindSafe for JoinData
impl Send for JoinData
impl Sync for JoinData
impl Unpin for JoinData
impl UnsafeUnpin for JoinData
impl !UnwindSafe for JoinData
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> 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