@@ -416,7 +416,7 @@ pub trait QueryDsl: Sized {
416
416
/// assert_eq!(Ok(expected_data), data);
417
417
/// # }
418
418
/// ```
419
- fn inner_join < Rhs > ( self , rhs : Rhs ) -> Self :: Output
419
+ fn inner_join < Rhs > ( self , rhs : Rhs ) -> InnerJoin < Self , Rhs >
420
420
where
421
421
Self : JoinWithImplicitOnClause < Rhs , joins:: Inner > ,
422
422
{
@@ -429,7 +429,7 @@ pub trait QueryDsl: Sized {
429
429
/// instead. See [`inner_join`] for usage examples.
430
430
///
431
431
/// [`inner_join`]: #method.inner_join
432
- fn left_outer_join < Rhs > ( self , rhs : Rhs ) -> Self :: Output
432
+ fn left_outer_join < Rhs > ( self , rhs : Rhs ) -> LeftJoin < Self , Rhs >
433
433
where
434
434
Self : JoinWithImplicitOnClause < Rhs , joins:: LeftOuter > ,
435
435
{
@@ -439,7 +439,7 @@ pub trait QueryDsl: Sized {
439
439
/// Alias for [`left_outer_join`].
440
440
///
441
441
/// [`left_outer_join`]: #method.left_outer_join
442
- fn left_join < Rhs > ( self , rhs : Rhs ) -> Self :: Output
442
+ fn left_join < Rhs > ( self , rhs : Rhs ) -> LeftJoin < Self , Rhs >
443
443
where
444
444
Self : JoinWithImplicitOnClause < Rhs , joins:: LeftOuter > ,
445
445
{
0 commit comments