Fix clippy: Derive Eq for List

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

View File

@ -1,7 +1,7 @@
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
/// Used for ser/de of list resources /// Used for ser/de of list resources
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)] #[derive(Clone, Debug, Deserialize, Serialize, PartialEq, Eq)]
pub struct List { pub struct List {
id: String, id: String,
title: String, title: String,