1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![cfg_attr(feature = "backtrace", feature(error_generic_member_access))]
#![cfg_attr(feature = "backtrace", feature(provide_any))]

mod any_error_impl;
#[cfg(feature = "backtrace")]
mod bt;
mod context;

#[cfg(test)]
mod any_error_test;

pub use any_error_impl::backtrace_str;
pub use any_error_impl::AnyError;
pub use context::AddContext;