We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f040b2a commit 82829bbCopy full SHA for 82829bb
1 file changed
fuzz/fuzz_targets/fuzz_arbitrary_bytes.rs
@@ -17,7 +17,7 @@ fuzz_target!(|data: DisplayableBytes| {
17
#[derive(Arbitrary)]
18
pub struct DisplayableBytes<'a>(&'a [u8]);
19
20
-impl<'a> Debug for DisplayableBytes<'a> {
+impl Debug for DisplayableBytes<'_> {
21
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
22
let s = String::from_utf8_lossy(self.0);
23
f.debug_struct("Bytes")
0 commit comments