plaintalk 0.0.15

A library for parsing and generating PlainTalk
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate num;

mod error;
mod pullparser;
mod message;
mod field;

pub use self::error::Error;
pub use self::pullparser::PullParser;
pub use self::message::Message;
pub use self::field::Field;

#[cfg(test)]
mod test;