Fix clippy: Derive Eq for Card

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2022-12-27 19:08:13 +01:00
parent ee4e00affd
commit 8cfe447aa1
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
use serde::{Deserialize, Serialize};
/// A card of a status.
#[derive(Debug, Clone, Deserialize, Serialize, PartialEq)]
#[derive(Debug, Clone, Deserialize, Serialize, PartialEq, Eq)]
pub struct Card {
/// The url associated with the card.
pub url: String,