We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b80645c commit 63e9cd3Copy full SHA for 63e9cd3
src/lib.rs
@@ -410,7 +410,7 @@ pub struct Requester<'i, Rq, Rp> {
410
channel: &'i Channel<Rq, Rp>,
411
}
412
413
-impl<'i, Rq, Rp> Drop for Requester<'i, Rq, Rp> {
+impl<Rq, Rp> Drop for Requester<'_, Rq, Rp> {
414
fn drop(&mut self) {
415
self.channel
416
.requester_claimed
@@ -551,7 +551,7 @@ impl<'i, Rq, Rp> Requester<'i, Rq, Rp> {
551
552
553
554
-impl<'i, Rq, Rp> Requester<'i, Rq, Rp>
+impl<Rq, Rp> Requester<'_, Rq, Rp>
555
where
556
Rq: Default,
557
{
@@ -627,7 +627,7 @@ pub struct Responder<'i, Rq, Rp> {
627
628
629
630
-impl<'i, Rq, Rp> Drop for Responder<'i, Rq, Rp> {
+impl<Rq, Rp> Drop for Responder<'_, Rq, Rp> {
631
632
633
.responder_claimed
@@ -768,7 +768,7 @@ impl<'i, Rq, Rp> Responder<'i, Rq, Rp> {
768
769
770
771
-impl<'i, Rq, Rp> Responder<'i, Rq, Rp>
+impl<Rq, Rp> Responder<'_, Rq, Rp>
772
773
Rp: Default,
774
0 commit comments