From 3f0509e7b1387ec9d50cba4f85b7a4e6bf5515c8 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Tue, 16 Aug 2022 11:39:17 +0200 Subject: [PATCH] fix(crypto-js): Add missing `Debug` impl. --- bindings/matrix-sdk-crypto-js/src/identifiers.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bindings/matrix-sdk-crypto-js/src/identifiers.rs b/bindings/matrix-sdk-crypto-js/src/identifiers.rs index e0bf6e7c9..4e18782b5 100644 --- a/bindings/matrix-sdk-crypto-js/src/identifiers.rs +++ b/bindings/matrix-sdk-crypto-js/src/identifiers.rs @@ -133,6 +133,7 @@ impl DeviceKeyId { /// The basic key algorithms in the specification. #[wasm_bindgen] +#[derive(Debug)] pub struct DeviceKeyAlgorithm { inner: ruma::DeviceKeyAlgorithm, } @@ -163,6 +164,7 @@ impl DeviceKeyAlgorithm { /// The basic key algorithm names in the specification. #[wasm_bindgen] +#[derive(Debug)] pub enum DeviceKeyAlgorithmName { /// The Ed25519 signature algorithm. Ed25519,