aboutsummaryrefslogtreecommitdiff
path: root/src/event.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/event.rs')
-rw-r--r--src/event.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/event.rs b/src/event.rs
index 70ec816..488ac04 100644
--- a/src/event.rs
+++ b/src/event.rs
@@ -1,6 +1,9 @@
+use std::borrow::{ Borrow, ToOwned };
+
use command;
use reply;
+#[derive(Debug, Clone, PartialEq)]
pub enum Event<'a> {
Command(command::Command<'a>),
Reply(reply::Reply<'a>),