Skip to content

Commit b934e6f

Browse files
committed
Another feeble attempt
1 parent 1ccd394 commit b934e6f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/utils/async.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -578,9 +578,10 @@ impl<'a, 'stream, T: 'a> AsyncProj<'a, 'stream, T> {
578578
}
579579

580580
#[must_use]
581-
pub fn proj_mut<'b>(&'b mut self) -> AsyncProj<'b, 'stream, &'b mut T>
581+
pub fn proj_mut<'b>(&'b mut self) -> AsyncProj<'a, 'stream, &'a mut T>
582582
where
583-
'a: 'b,
583+
'b: 'a
584+
// 'a: 'b,
584585
{
585586
AsyncProj {
586587
_capture: PhantomData::<&'b ()>,

0 commit comments

Comments
 (0)