1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//! [frugalos]の公開インタフェースおよびRPCクライアントを提供するためのクレート。
//!
//! [frugalos]: https://github.com/frugalos/frugalos
#![warn(missing_docs)]
extern crate bytecodec;
extern crate fibers;
extern crate fibers_rpc;
extern crate futures;
extern crate libc;
extern crate serde;

#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate trackable;

pub use error::{Error, ErrorKind};

pub mod client;
pub mod consistency;
pub mod deadline;
pub mod entity;
pub mod expect;
pub mod multiplicity;
pub mod repair;
pub mod schema;
pub mod time;

mod error;

/// クレート固有の`Result`型。
pub type Result<T> = std::result::Result<T, Error>;