cgp-error-extra 0.7.0

Context-generic programming error components
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(feature = "alloc")]
mod alloc;

mod discard_detail;
mod infallible;
mod panic_error;
mod raise_from;
mod return_error;

#[cfg(feature = "alloc")]
pub use alloc::{DebugError, DisplayError};

pub use discard_detail::DiscardDetail;
pub use infallible::RaiseInfallible;
pub use panic_error::PanicOnError;
pub use raise_from::RaiseFrom;
pub use return_error::ReturnError;