From 28ee8bc6d03724bf41a1d4978db66b1035251ea5 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 27 Jul 2022 10:52:50 +0200 Subject: [PATCH] http: clippy fixes Signed-off-by: Wolfgang Bumiller --- proxmox-http/src/websocket/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxmox-http/src/websocket/mod.rs b/proxmox-http/src/websocket/mod.rs index 93341788..2efc06ae 100644 --- a/proxmox-http/src/websocket/mod.rs +++ b/proxmox-http/src/websocket/mod.rs @@ -315,7 +315,7 @@ impl AsyncWrite for WebSocketWriter { } } -#[derive(Debug, PartialEq)] +#[derive(Debug, Eq, PartialEq)] /// Represents the header of a websocket Frame pub struct FrameHeader { /// True if the frame is either non-fragmented, or the last fragment