Struct sql_ops::join::no_partitioning_join::CpuHashJoinBuilder
source · [−]pub struct CpuHashJoinBuilder<T: DeviceCopy + KeyAttribute> { /* private fields */ }
Expand description
Build a CpuHashJoin
.
Implementations
sourceimpl<T: Clone + Default + DeviceCopy + KeyAttribute> CpuHashJoinBuilder<T>
impl<T: Clone + Default + DeviceCopy + KeyAttribute> CpuHashJoinBuilder<T>
pub fn hashing_scheme(self, hashing_scheme: HashingScheme) -> Self
pub fn is_selective(self, is_selective: bool) -> Self
pub fn hash_table(self, hash_table: Arc<HashTable<T>>) -> Self
pub fn build(&self) -> CpuHashJoin<T>
Trait Implementations
sourceimpl<T: Clone + DeviceCopy + KeyAttribute> Clone for CpuHashJoinBuilder<T>
impl<T: Clone + DeviceCopy + KeyAttribute> Clone for CpuHashJoinBuilder<T>
sourcefn clone(&self) -> CpuHashJoinBuilder<T>
fn clone(&self) -> CpuHashJoinBuilder<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T: Debug + DeviceCopy + KeyAttribute> Debug for CpuHashJoinBuilder<T>
impl<T: Debug + DeviceCopy + KeyAttribute> Debug for CpuHashJoinBuilder<T>
sourceimpl<T: DeviceCopy + KeyAttribute> Default for CpuHashJoinBuilder<T>
impl<T: DeviceCopy + KeyAttribute> Default for CpuHashJoinBuilder<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for CpuHashJoinBuilder<T> where
T: RefUnwindSafe,
impl<T> Send for CpuHashJoinBuilder<T> where
T: Send + Sync,
impl<T> Sync for CpuHashJoinBuilder<T> where
T: Send + Sync,
impl<T> Unpin for CpuHashJoinBuilder<T>
impl<T> UnwindSafe for CpuHashJoinBuilder<T> where
T: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more