File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ type Result<T> = result::Result<T, MissingFieldError>;
13
13
14
14
pub struct Cert < ' a > ( pub & ' a mut [ u8 ] ) ;
15
15
16
- impl < ' a > fmt:: Display for Cert < ' a > {
16
+ impl fmt:: Display for Cert < ' _ > {
17
17
fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
18
18
crate :: arrayfmt ( self . as_bytes ( ) , f)
19
19
}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ type Result<T> = result::Result<T, MissingFieldError>;
13
13
// Type to expose parsing operations on CSR in underlying slice
14
14
pub struct Csr < ' a > ( & ' a mut [ u8 ] ) ;
15
15
16
- impl < ' a > fmt:: Display for Csr < ' a > {
16
+ impl fmt:: Display for Csr < ' _ > {
17
17
fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
18
18
crate :: arrayfmt ( self . as_bytes ( ) , f)
19
19
}
You can’t perform that action at this time.
0 commit comments