rust-irc/src/data/mod.rs
2014-11-03 00:08:40 -05:00

10 lines
333 B
Rust

pub mod kinds {
pub trait IrcWriter: Writer + Sized + Send + 'static {}
impl<T> IrcWriter for T where T: Writer + Sized + Send + 'static {}
pub trait IrcReader: Buffer + Sized + Send + 'static {}
impl<T> IrcReader for T where T: Buffer + Sized + Send + 'static {}
}
pub mod command;
pub mod config;
pub mod message;