File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ impl OutputAssertExt for process::Output {
56
56
}
57
57
}
58
58
59
- impl < ' c > OutputAssertExt for & ' c mut process:: Command {
59
+ impl OutputAssertExt for & mut process:: Command {
60
60
fn assert ( self ) -> Assert {
61
61
let output = match self . output ( ) {
62
62
Ok ( output) => output,
Original file line number Diff line number Diff line change @@ -604,7 +604,7 @@ impl From<process::Command> for Command {
604
604
}
605
605
}
606
606
607
- impl < ' c > OutputOkExt for & ' c mut Command {
607
+ impl OutputOkExt for & mut Command {
608
608
fn ok ( self ) -> OutputResult {
609
609
let output = self . output ( ) . map_err ( OutputError :: with_cause) ?;
610
610
if output. status . success ( ) {
@@ -643,7 +643,7 @@ impl<'c> OutputOkExt for &'c mut Command {
643
643
}
644
644
}
645
645
646
- impl < ' c > OutputAssertExt for & ' c mut Command {
646
+ impl OutputAssertExt for & mut Command {
647
647
fn assert ( self ) -> Assert {
648
648
let output = match self . output ( ) {
649
649
Ok ( output) => output,
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ impl OutputOkExt for process::Output {
103
103
}
104
104
}
105
105
106
- impl < ' c > OutputOkExt for & ' c mut process:: Command {
106
+ impl OutputOkExt for & mut process:: Command {
107
107
fn ok ( self ) -> OutputResult {
108
108
let output = self . output ( ) . map_err ( OutputError :: with_cause) ?;
109
109
if output. status . success ( ) {
@@ -318,7 +318,7 @@ impl<'a> DebugBytes<'a> {
318
318
}
319
319
}
320
320
321
- impl < ' a > fmt:: Display for DebugBytes < ' a > {
321
+ impl fmt:: Display for DebugBytes < ' _ > {
322
322
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
323
323
format_bytes ( self . bytes , f)
324
324
}
You can’t perform that action at this time.
0 commit comments