pub enum JoinBuildSide {
PreferLeft,
ForceLeft,
PreferRight,
ForceRight,
}Expand description
Parameters for which side to use as the build side in a join. Currently only respected by the streaming engine.
Variants§
PreferLeft
Unless there’s a very good reason to believe that the right side is smaller, use the left side.
ForceLeft
Regardless of other heuristics, use the left side as build side.
PreferRight
ForceRight
Trait Implementations§
Source§impl Clone for JoinBuildSide
impl Clone for JoinBuildSide
Source§fn clone(&self) -> JoinBuildSide
fn clone(&self) -> JoinBuildSide
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 moreSource§impl Debug for JoinBuildSide
impl Debug for JoinBuildSide
Source§impl<'de> Deserialize<'de> for JoinBuildSide
impl<'de> Deserialize<'de> for JoinBuildSide
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<JoinBuildSide, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<JoinBuildSide, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for JoinBuildSide
impl Hash for JoinBuildSide
Source§impl PartialEq for JoinBuildSide
impl PartialEq for JoinBuildSide
Source§impl Serialize for JoinBuildSide
impl Serialize for JoinBuildSide
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for JoinBuildSide
Auto Trait Implementations§
impl Freeze for JoinBuildSide
impl RefUnwindSafe for JoinBuildSide
impl Send for JoinBuildSide
impl Sync for JoinBuildSide
impl Unpin for JoinBuildSide
impl UnwindSafe for JoinBuildSide
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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