anyerror/lib.rs
1#![cfg_attr(feature = "backtrace", feature(error_generic_member_access))]
2#![allow(clippy::bool_assert_comparison, clippy::type_complexity)]
3
4mod any_error_impl;
5#[cfg(feature = "backtrace")]
6mod bt;
7mod context;
8mod macros;
9
10#[cfg(test)]
11mod any_error_test;
12
13pub use any_error_impl::backtrace_str;
14pub use any_error_impl::AnyError;
15pub use context::AddContext;