human_errors/lib.rs
1//! Errors which make your users' lives easier.
2//!
3//! Provides a framework through which you can expose error chains
4//! which include advice for how users can respond to (and hopefully
5//! resolve) a failure. Designed to make you treat recovery from failure
6//! as a fundamental part of the design process in your application.
7
8mod error;
9mod from;
10mod helpers;
11mod result;
12mod wrapper;
13
14pub use error::*;
15pub use helpers::*;
16pub use result::ResultExt;
17pub use wrapper::*;