#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_docs)]
#![doc = include_str!("../README.md")]
mod attachment;
mod cause;
mod compatibility;
mod error;
mod implementation;
mod problem;
mod problems;
mod receiver;
mod result;
pub mod common;
#[allow(unused_imports)]
pub use {
attachment::*, cause::*, compatibility::*, error::*, problem::*, problems::*, receiver::*,
result::*,
};
#[cfg(feature = "backtrace-external")]
pub use backtrace;