From f9c67f8c18b73b4e428e1c13a7b535a020ac9f74 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 13 Jul 2021 16:02:28 +0100 Subject: [PATCH] errors: No longer impl Error for ESVU Not sure why this was ever needed but it isn't any more. Signed-off-by: Ian Jackson --- src/error.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/error.rs b/src/error.rs index 0ee59332..dc0de331 100644 --- a/src/error.rs +++ b/src/error.rs @@ -141,7 +141,7 @@ impl From for ApiPieceOpError { } } -#[derive(Error,Debug,Serialize,Clone)] +#[derive(Debug,Serialize,Clone)] pub enum ErrorSignaledViaUpdate { InternalError, PlayerRemoved, // appears only in streams for applicable player @@ -152,7 +152,7 @@ pub enum ErrorSignaledViaUpdate { state: POEPU, }, } -display_as_debug!{ErrorSignaledViaUpdate, } +//display_as_debug!{ErrorSignaledViaUpdate, } #[derive(Error,Debug,Serialize,Copy,Clone,Eq,PartialEq)] pub enum PieceOpErrorPartiallyProcessed { -- 2.30.2