File size: 515 Bytes
1851bae
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
mod auto_dump;
mod compact;
mod config;
mod decimal;
mod error;
mod http;
mod legacy;
mod model;
mod percentage;
mod reader;
mod reasoning;
mod retry;
mod writer;

pub use auto_dump::*;
pub use compact::*;
pub use config::*;
pub use decimal::*;
pub use error::Error;
pub use http::*;
pub use model::*;
pub use percentage::*;
pub use reader::*;
pub use reasoning::*;
pub use retry::*;
pub use writer::*;

/// A `Result` type alias for this crate's [`Error`] type.
pub type Result<T> = std::result::Result<T, Error>;