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