Fix clippy: Derive Eq for TagHistory

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2022-12-27 18:59:18 +01:00
parent 759f651c4f
commit afe132ae5b
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ pub struct Application {
} }
/// Usage statistics for given days (typically the past week). /// Usage statistics for given days (typically the past week).
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct TagHistory { pub struct TagHistory {
/// UNIX timestamp on midnight of the given day. /// UNIX timestamp on midnight of the given day.
pub day: String, pub day: String,