1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Common overflow error types.

#![cfg_attr(not(any(test, feature = "std")), no_std)]
#![forbid(missing_docs, missing_debug_implementations)]
#![feature(never_type)]

#[cfg(any(test, feature = "std"))]
extern crate core;

extern crate failure;

mod structs;
mod traits;
pub use self::structs::*;
pub use self::traits::*;