diff options
author | Till Hoeppner | 2015-04-16 23:32:00 +0200 |
---|---|---|
committer | Till Hoeppner | 2015-04-16 23:32:00 +0200 |
commit | cd182daf35eae3739511f3751843ad01f0d489b3 (patch) | |
tree | 1ce4274d6107b2fe5c87f71437fd9aa988cf090b /src/log.rs | |
parent | 8bf21091210af570a74a29eb731a867c0788ebdb (diff) | |
download | ilc-cd182daf35eae3739511f3751843ad01f0d489b3.tar.gz ilc-cd182daf35eae3739511f3751843ad01f0d489b3.tar.xz ilc-cd182daf35eae3739511f3751843ad01f0d489b3.zip |
Add untested support for binary serialization with rustc_serialize and bincode
Diffstat (limited to 'src/log.rs')
-rw-r--r-- | src/log.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ pub struct Log { /// All representable events, such as messages, quits, joins /// and topic changes. -#[derive(Debug)] +#[derive(Debug, RustcEncodable, RustcDecodable)] pub enum Event { Connect { time: i64 |