async-err 0.1.1

Contextual asynchronous error handling.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod error;
pub mod future_ext;
#[cfg(feature = "hooks")]
pub mod hooks;
pub mod prelude;

pub use crate::error::AsyncError;
pub use crate::future_ext::{AsyncResultChainExt, AsyncResultExt};

#[allow(unused_imports)]
pub use crate::prelude::*;

#[cfg(feature = "hooks")]
pub use crate::hooks::{register_hook, AsyncErrorHook};