clippy: fix warning by implementing Eq

This commit is contained in:
Valentin Tolmer
2022-09-27 06:48:39 +02:00
committed by nitnelave
parent 516893f1f7
commit 6c21f2ef4b
13 changed files with 19 additions and 19 deletions

View File

@@ -265,7 +265,7 @@ pub struct GroupDetails {
pub uuid: Uuid,
}
#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct UserAndGroups {
pub user: User,
pub groups: Option<Vec<GroupDetails>>,