From 85990676cd8fd4e498a8a66172de330191681f55 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Thu, 17 Oct 2019 00:21:52 +0200 Subject: [PATCH] Remove impl Serialize for EventResult --- src/lib.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 3b1a879d..c6bfe314 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -345,17 +345,6 @@ where } } -// For now, we don't support serialization of EventResult. -// This is going to be added in a future version. -impl Serialize for EventResult { - fn serialize(&self, _serializer: S) -> Result - where - S: Serializer, - { - unimplemented!("not supported yet") - } -} - /// An error when attempting to create a value from a string via the `FromStr` trait. /// /// This error type is only used for simple enums with unit variants. Event deserialization through