cgp_error_extra/
lib.rs

1#![no_std]
2
3#[cfg(feature = "alloc")]
4extern crate alloc;
5
6mod impls;
7
8#[cfg(feature = "alloc")]
9pub use impls::{DebugError, DisplayError};
10pub use impls::{DiscardDetail, PanicOnError, RaiseFrom, RaiseInfallible, ReturnError};