From 23cf74640c72293b6d5e2c878cadf04b0ed36f76 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 19 May 2021 20:51:33 +0100 Subject: [PATCH] accounts: Require Debug for Perm This makes debugging a bit easier. Signed-off-by: Ian Jackson --- src/accounts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/accounts.rs b/src/accounts.rs index 3ea5c893..fb6f17e2 100644 --- a/src/accounts.rs +++ b/src/accounts.rs @@ -460,7 +460,7 @@ pub mod loaded_acl { use authproofs::*; pub trait Perm: FromPrimitive + ToPrimitive + - Copy + Eq + Hash + Sync + Send + 'static + Copy + Eq + Hash + Debug + Sync + Send + 'static { type Auth; const NOT_FOUND: MgmtError; -- 2.30.2