pub struct JoinCondition {
pub parent: (QualifiedIdentifier, FieldName),
pub child: (QualifiedIdentifier, FieldName),
}Expand description
A join condition between parent and child in the plan tree
Fields§
§parent: (QualifiedIdentifier, FieldName)(table, column) on the parent side
child: (QualifiedIdentifier, FieldName)(table, column) on the child side
Trait Implementations§
Source§impl Clone for JoinCondition
impl Clone for JoinCondition
Source§fn clone(&self) -> JoinCondition
fn clone(&self) -> JoinCondition
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 JoinCondition
impl RefUnwindSafe for JoinCondition
impl Send for JoinCondition
impl Sync for JoinCondition
impl Unpin for JoinCondition
impl UnsafeUnpin for JoinCondition
impl UnwindSafe for JoinCondition
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