From 2f35b2cfc61d8b2fd4024d6aac7a35ab4ba2e0d9 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Mon, 12 Sep 2022 14:42:18 +0200 Subject: [PATCH] feat(crypto-js): `QrCodeScan` implements `Debug`. --- bindings/matrix-sdk-crypto-js/src/verification.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/bindings/matrix-sdk-crypto-js/src/verification.rs b/bindings/matrix-sdk-crypto-js/src/verification.rs index 356e61439..dd7134890 100644 --- a/bindings/matrix-sdk-crypto-js/src/verification.rs +++ b/bindings/matrix-sdk-crypto-js/src/verification.rs @@ -756,6 +756,7 @@ impl QrCode { /// A scanned QR code. #[cfg(feature = "qrcode")] #[wasm_bindgen] +#[derive(Debug)] pub struct QrCodeScan { inner: matrix_sdk_qrcode::QrVerificationData, }