1#![warn(missing_docs)]
5extern crate bytecodec;
6extern crate fibers;
7extern crate fibers_rpc;
8extern crate futures;
9extern crate libc;
10extern crate serde;
11
12#[macro_use]
13extern crate serde_derive;
14#[macro_use]
15extern crate trackable;
16
17pub use error::{Error, ErrorKind};
18
19pub mod client;
20pub mod consistency;
21pub mod deadline;
22pub mod entity;
23pub mod expect;
24pub mod multiplicity;
25pub mod repair;
26pub mod schema;
27pub mod time;
28
29mod error;
30
31pub type Result<T> = std::result::Result<T, Error>;