Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Jan 5, 2025
1 parent edc60b4 commit 9ba4561
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/async_helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub struct FuturePath<'m> {
pub(crate) ending_polygon: u32,
}

impl<'m> fmt::Debug for FuturePath<'m> {
impl fmt::Debug for FuturePath<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("FuturePath")
.field("from", &self.from)
Expand All @@ -29,7 +29,7 @@ impl<'m> fmt::Debug for FuturePath<'m> {
}
}

impl<'m> Future for FuturePath<'m> {
impl Future for FuturePath<'_> {
type Output = Option<Path>;

fn poll(
Expand Down

0 comments on commit 9ba4561

Please sign in to comment.