pub struct JoinBuilder2<P, J>(/* private fields */);Implementations§
Source§impl<A, B> JoinBuilder2<A, B>
impl<A, B> JoinBuilder2<A, B>
pub fn filter(self, f: impl FnOnce(A, B) -> bool) -> Joined2Filter<A, B>
pub fn join<C>(self, f: impl FnOnce(A, B, C) -> bool) -> JoinBuilder3<A, B, C>
pub fn left_join<C>( self, f: impl FnOnce(A, B, C) -> bool, ) -> JoinBuilder3<A, B, C>
pub fn right_join<C>( self, f: impl FnOnce(A, B, C) -> bool, ) -> JoinBuilder3<A, B, C>
pub fn full_join<C>( self, f: impl FnOnce(A, B, C) -> bool, ) -> JoinBuilder3<A, B, C>
Auto Trait Implementations§
impl<P, J> Freeze for JoinBuilder2<P, J>
impl<P, J> RefUnwindSafe for JoinBuilder2<P, J>where
P: RefUnwindSafe,
J: RefUnwindSafe,
impl<P, J> Send for JoinBuilder2<P, J>
impl<P, J> Sync for JoinBuilder2<P, J>
impl<P, J> Unpin for JoinBuilder2<P, J>
impl<P, J> UnsafeUnpin for JoinBuilder2<P, J>
impl<P, J> UnwindSafe for JoinBuilder2<P, J>where
P: UnwindSafe,
J: 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