Fix clippy: Derive Eq for Card
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
ee4e00affd
commit
8cfe447aa1
|
@ -3,7 +3,7 @@
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
/// A card of a status.
|
/// A card of a status.
|
||||||
#[derive(Debug, Clone, Deserialize, Serialize, PartialEq)]
|
#[derive(Debug, Clone, Deserialize, Serialize, PartialEq, Eq)]
|
||||||
pub struct Card {
|
pub struct Card {
|
||||||
/// The url associated with the card.
|
/// The url associated with the card.
|
||||||
pub url: String,
|
pub url: String,
|
||||||
|
|
Loading…
Reference in New Issue