pub enum LeftJoinAlgorithm {
HashBuildRightProbeLeft {
keys: Vec<Variable>,
},
}
Expand description
The left join algorithm used (c.f. GraphPattern::LeftJoin
).
Variants§
Trait Implementations§
Source§impl Clone for LeftJoinAlgorithm
impl Clone for LeftJoinAlgorithm
Source§fn clone(&self) -> LeftJoinAlgorithm
fn clone(&self) -> LeftJoinAlgorithm
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 LeftJoinAlgorithm
impl Debug for LeftJoinAlgorithm
Source§impl Default for LeftJoinAlgorithm
impl Default for LeftJoinAlgorithm
Source§impl Hash for LeftJoinAlgorithm
impl Hash for LeftJoinAlgorithm
Source§impl PartialEq for LeftJoinAlgorithm
impl PartialEq for LeftJoinAlgorithm
impl Eq for LeftJoinAlgorithm
impl StructuralPartialEq for LeftJoinAlgorithm
Auto Trait Implementations§
impl Freeze for LeftJoinAlgorithm
impl RefUnwindSafe for LeftJoinAlgorithm
impl Send for LeftJoinAlgorithm
impl Sync for LeftJoinAlgorithm
impl Unpin for LeftJoinAlgorithm
impl UnwindSafe for LeftJoinAlgorithm
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