dbus_serialize/lib.rs
1//! Central to this crate is the Value enum. Value can be used to express any valid D-Bus data
2//! structure (and some invalid ones). Additionally, rustc_serialize can be used to convert from
3//! standard rust data types to Value, and vice-versa.
4extern crate rustc_serialize;
5
6pub mod types;
7pub mod decoder;
8pub mod encoder;