argdata 0.1.2

Argdata: A binary serialization format.
Documentation
mod encoded;
pub use self::encoded::{encoded, encoded_with_fds, EncodedArgdata};

mod null;
pub use self::null::{null, Null};

mod binary;
pub use self::binary::{binary, Binary};

mod bool;
pub use self::bool::{bool, Bool};

mod fd;
pub use self::fd::{encoded_fd, invalid_fd, process_fd};

mod float;
pub use self::float::{float, Float};

mod bigint;
pub use self::bigint::{bigint, BigInt};

mod int;
pub use self::int::{int, Int};

mod map;
pub use self::map::{map, Map};

mod seq;
pub use self::seq::{seq, Seq};

mod str;
pub use self::str::{str, Str};

mod timestamp;
pub use self::timestamp::{timestamp, Timestamp};