pub struct JoinEdge {
pub from: usize,
pub to: usize,
pub conditions: Vec<JoinCondition>,
}Expand description
An edge in the join graph representing a join condition.
Fields§
§from: usizeSource node id.
to: usizeTarget node id.
conditions: Vec<JoinCondition>Join conditions between these nodes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JoinEdge
impl RefUnwindSafe for JoinEdge
impl Send for JoinEdge
impl Sync for JoinEdge
impl Unpin for JoinEdge
impl UnwindSafe for JoinEdge
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