From c8797043373d1032dc1a29971edf3f2c9e60baae Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Sat, 2 Sep 2023 16:24:18 +0200 Subject: [PATCH] AclListItem: derive Clone and PartialEq Signed-off-by: Dietmar Maurer --- pbs-api-types/src/acl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pbs-api-types/src/acl.rs b/pbs-api-types/src/acl.rs index 3142f6fc..8bbd2958 100644 --- a/pbs-api-types/src/acl.rs +++ b/pbs-api-types/src/acl.rs @@ -280,7 +280,7 @@ pub const ACL_UGID_TYPE_SCHEMA: Schema = StringSchema::new("Type of 'ugid' prope } } )] -#[derive(Serialize, Deserialize)] +#[derive(Serialize, Deserialize, Clone, PartialEq)] /// ACL list entry. pub struct AclListItem { pub path: String,