From e15920b83941367f78aa6f849b377da2f066cf10 Mon Sep 17 00:00:00 2001 From: Kedar Sovani Date: Fri, 17 Feb 2023 19:48:36 +0530 Subject: [PATCH] Make Clippy happy --- matter/src/secure_channel/pake.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/matter/src/secure_channel/pake.rs b/matter/src/secure_channel/pake.rs index b096cf6..27aaeb0 100644 --- a/matter/src/secure_channel/pake.rs +++ b/matter/src/secure_channel/pake.rs @@ -115,6 +115,12 @@ impl PaseMgr { } } +impl Default for PaseMgr { + fn default() -> Self { + Self::new() + } +} + // This file basically deals with the handlers for the PASE secure channel protocol // TLV extraction and encoding is done in this file. // We create a Spake2p object and set it up in the exchange-data. This object then