Struct polars_lazy::dsl::JoinOptions
source · pub struct JoinOptions {
pub allow_parallel: bool,
pub force_parallel: bool,
pub how: JoinType,
pub suffix: Cow<'static, str>,
pub slice: Option<(i64, usize)>,
pub rows_left: (Option<usize>, usize),
pub rows_right: (Option<usize>, usize),
}
Fields§
§allow_parallel: bool
§force_parallel: bool
§how: JoinType
§suffix: Cow<'static, str>
§slice: Option<(i64, usize)>
§rows_left: (Option<usize>, usize)
Proxy of the number of rows in both sides of the joins
Holds (Option<known_size>, estimated_size)
rows_right: (Option<usize>, usize)
Trait Implementations§
source§impl Clone for JoinOptions
impl Clone for JoinOptions
source§fn clone(&self) -> JoinOptions
fn clone(&self) -> JoinOptions
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 JoinOptions
impl Debug for JoinOptions
source§impl Default for JoinOptions
impl Default for JoinOptions
source§fn default() -> JoinOptions
fn default() -> JoinOptions
Returns the “default value” for a type. Read more
source§impl PartialEq<JoinOptions> for JoinOptions
impl PartialEq<JoinOptions> for JoinOptions
source§fn eq(&self, other: &JoinOptions) -> bool
fn eq(&self, other: &JoinOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for JoinOptions
impl StructuralEq for JoinOptions
impl StructuralPartialEq for JoinOptions
Auto Trait Implementations§
impl !RefUnwindSafe for JoinOptions
impl Send for JoinOptions
impl Sync for JoinOptions
impl Unpin for JoinOptions
impl !UnwindSafe for JoinOptions
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.