Fix clippy: Derive Eq for MetadataField

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

View File

@ -56,7 +56,7 @@ pub struct Account {
} }
/// A single name: value pair from a user's profile /// A single name: value pair from a user's profile
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Default)] #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Default)]
pub struct MetadataField { pub struct MetadataField {
/// name part of metadata /// name part of metadata
pub name: String, pub name: String,