aboutsummaryrefslogtreecommitdiff
path: root/src/event.rs
diff options
context:
space:
mode:
authorTill Hoeppner2015-06-26 21:55:39 +0200
committerTill Hoeppner2015-06-26 21:55:39 +0200
commit03968879ce2b5c57f23667dd5c2af3ca2d48d53e (patch)
tree9390accc260c5ddfb797efe35610becf0e934964 /src/event.rs
parentf3122cc55af676c6e1b3f04008e6b455b8b83f5b (diff)
downloadirsc-03968879ce2b5c57f23667dd5c2af3ca2d48d53e.tar.gz
irsc-03968879ce2b5c57f23667dd5c2af3ca2d48d53e.tar.xz
irsc-03968879ce2b5c57f23667dd5c2af3ca2d48d53e.zip
Start de-cowification
Diffstat (limited to 'src/event.rs')
-rw-r--r--src/event.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/event.rs b/src/event.rs
index 488ac04..8a7e3b7 100644
--- a/src/event.rs
+++ b/src/event.rs
@@ -4,9 +4,9 @@ use command;
use reply;
#[derive(Debug, Clone, PartialEq)]
-pub enum Event<'a> {
- Command(command::Command<'a>),
- Reply(reply::Reply<'a>),
+pub enum Event {
+ Command(command::Command),
+ Reply(reply::Reply),
Connected,
Disconnected
}