pub struct IndexSemiJoinLeft<'c, Rhs, IndexIter, F> { /* private fields */ }Expand description
An index join operator that returns matching rows from the index side.
Trait Implementations§
Source§impl<'a, Rhs, IndexIter, F> RelOps<'a> for IndexSemiJoinLeft<'_, Rhs, IndexIter, F>
impl<'a, Rhs, IndexIter, F> RelOps<'a> for IndexSemiJoinLeft<'_, Rhs, IndexIter, F>
Source§fn next(&mut self) -> Option<RelValue<'a>>
fn next(&mut self) -> Option<RelValue<'a>>
Advances the
iterator and returns the next RelValue.Source§fn select<P>(self, predicate: P) -> Select<Self, P>
fn select<P>(self, predicate: P) -> Select<Self, P>
Creates an
Iterator which uses a closure to determine if a [RelValueRef] should be yielded. Read moreSource§fn join_inner<Pred, Proj, KeyLhs, KeyRhs, Rhs>(
self,
with: Rhs,
key_lhs: KeyLhs,
key_rhs: KeyRhs,
predicate: Pred,
project: Proj,
) -> JoinInner<'a, Self, Rhs, KeyLhs, KeyRhs, Pred, Proj>
fn join_inner<Pred, Proj, KeyLhs, KeyRhs, Rhs>( self, with: Rhs, key_lhs: KeyLhs, key_rhs: KeyRhs, predicate: Pred, project: Proj, ) -> JoinInner<'a, Self, Rhs, KeyLhs, KeyRhs, Pred, Proj>
Intersection between the left and the right, both (non-sorted)
iterators. Read moreSource§fn collect_vec<T>(self, convert: impl FnMut(RelValue<'a>) -> T) -> Vec<T>where
Self: Sized,
fn collect_vec<T>(self, convert: impl FnMut(RelValue<'a>) -> T) -> Vec<T>where
Self: Sized,
Collect all the rows in this relation into a
Vec<T> given a function RelValue<'a> -> T.fn iter(&mut self) -> impl Iterator<Item = RelValue<'a>>where
Self: Sized,
Auto Trait Implementations§
impl<'c, Rhs, IndexIter, F> Freeze for IndexSemiJoinLeft<'c, Rhs, IndexIter, F>
impl<'c, Rhs, IndexIter, F> RefUnwindSafe for IndexSemiJoinLeft<'c, Rhs, IndexIter, F>
impl<'c, Rhs, IndexIter, F> Send for IndexSemiJoinLeft<'c, Rhs, IndexIter, F>
impl<'c, Rhs, IndexIter, F> Sync for IndexSemiJoinLeft<'c, Rhs, IndexIter, F>
impl<'c, Rhs, IndexIter, F> Unpin for IndexSemiJoinLeft<'c, Rhs, IndexIter, F>
impl<'c, Rhs, IndexIter, F> UnwindSafe for IndexSemiJoinLeft<'c, Rhs, IndexIter, F>
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> 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