Skip to content

Commit

Permalink
For completeness' sake
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Snaps <[email protected]>
  • Loading branch information
alexsnaps committed Oct 2, 2024
1 parent 004fe2c commit 587b4f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion limitador/src/counter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::hash::{Hash, Hasher};
use std::sync::Arc;
use std::time::Duration;

#[derive(Eq, Clone, Debug, Serialize, Deserialize)]
#[derive(Eq, Clone, Debug, Serialize, Deserialize, PartialEq)]

Check failure on line 8 in limitador/src/counter.rs

View workflow job for this annotation

GitHub Actions / Clippy

conflicting implementations of trait `std::cmp::PartialEq` for type `counter::Counter`

Check failure on line 8 in limitador/src/counter.rs

View workflow job for this annotation

GitHub Actions / Check

conflicting implementations of trait `PartialEq` for type `counter::Counter`

Check failure on line 8 in limitador/src/counter.rs

View workflow job for this annotation

GitHub Actions / Test Suite

conflicting implementations of trait `PartialEq` for type `counter::Counter`
pub struct Counter {
limit: Arc<Limit>,

Expand Down

0 comments on commit 587b4f0

Please sign in to comment.