From a20cae5670f20902379a7098d54e2a9c78b864cd Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 24 Oct 2019 01:32:11 -0400 Subject: derive some traits for Async --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index e49a5fb..a4e483e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,6 +2,7 @@ #![warn(clippy::nursery)] #![allow(clippy::type_complexity)] +#[derive(Copy, Clone, Debug, PartialEq, Eq)] pub enum Async { // we have a value for the main loop to return immediately. Ready(Item), -- cgit v1.2.3-54-g00ecf