Skip to content

Commit

Permalink
clippy: elide needless lifetime
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Cattermole <[email protected]>
  • Loading branch information
adam-cattermole committed Nov 28, 2024
1 parent 8e4faa9 commit 8c0d528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ impl<'de> Deserialize<'de> for Timeout {
}

struct TimeoutVisitor;
impl<'de> Visitor<'de> for TimeoutVisitor {
impl Visitor<'_> for TimeoutVisitor {
type Value = Timeout;

fn expecting(&self, formatter: &mut Formatter) -> std::fmt::Result {
Expand Down

0 comments on commit 8c0d528

Please sign in to comment.