Struct itertools::merge_join::MergeFuncLR
source · pub struct MergeFuncLR<F, T>(F, PhantomData<T>);
Tuple Fields§
§0: F
§1: PhantomData<T>
Trait Implementations§
source§impl<F: Clone, T: Clone> Clone for MergeFuncLR<F, T>
impl<F: Clone, T: Clone> Clone for MergeFuncLR<F, T>
source§fn clone(&self) -> MergeFuncLR<F, T>
fn clone(&self) -> MergeFuncLR<F, T>
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<L, R, F: FnMut(&L, &R) -> Ordering> OrderingOrBool<L, R> for MergeFuncLR<F, Ordering>
impl<L, R, F: FnMut(&L, &R) -> Ordering> OrderingOrBool<L, R> for MergeFuncLR<F, Ordering>
type MergeResult = EitherOrBoth<L, R>
fn left(left: L) -> Self::MergeResult
fn right(right: R) -> Self::MergeResult
fn merge( &mut self, left: L, right: R, ) -> (Option<Either<L, R>>, Self::MergeResult)
fn size_hint( left: (usize, Option<usize>), right: (usize, Option<usize>), ) -> (usize, Option<usize>)
source§impl<L, R, F: FnMut(&L, &R) -> bool> OrderingOrBool<L, R> for MergeFuncLR<F, bool>
impl<L, R, F: FnMut(&L, &R) -> bool> OrderingOrBool<L, R> for MergeFuncLR<F, bool>
type MergeResult = Either<L, R>
fn left(left: L) -> Self::MergeResult
fn right(right: R) -> Self::MergeResult
fn merge( &mut self, left: L, right: R, ) -> (Option<Either<L, R>>, Self::MergeResult)
fn size_hint( left: (usize, Option<usize>), right: (usize, Option<usize>), ) -> (usize, Option<usize>)
Auto Trait Implementations§
impl<F, T> Freeze for MergeFuncLR<F, T>where
F: Freeze,
impl<F, T> RefUnwindSafe for MergeFuncLR<F, T>where
F: RefUnwindSafe,
T: RefUnwindSafe,
impl<F, T> Send for MergeFuncLR<F, T>
impl<F, T> Sync for MergeFuncLR<F, T>
impl<F, T> Unpin for MergeFuncLR<F, T>
impl<F, T> UnwindSafe for MergeFuncLR<F, T>where
F: UnwindSafe,
T: UnwindSafe,
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> 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