Fix clippy: Derive Eq for Application

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

View File

@ -107,7 +107,7 @@ pub struct Tag {
}
/// Application details.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct Application {
/// Name of the application.
pub name: String,