async_err/lib.rs
1pub mod error;
2pub mod future_ext;
3#[cfg(feature = "hooks")]
4pub mod hooks;
5pub mod prelude;
6
7pub use crate::error::AsyncError;
8pub use crate::future_ext::{AsyncResultChainExt, AsyncResultExt};
9
10#[allow(unused_imports)]
11pub use crate::prelude::*;
12
13#[cfg(feature = "hooks")]
14pub use crate::hooks::{register_hook, AsyncErrorHook};