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