From: Ian Jackson Date: Wed, 19 May 2021 19:51:33 +0000 (+0100) Subject: accounts: Require Debug for Perm X-Git-Tag: otter-0.6.0~149 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=23cf74640c72293b6d5e2c878cadf04b0ed36f76;p=otter.git accounts: Require Debug for Perm This makes debugging a bit easier. Signed-off-by: Ian Jackson --- 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;