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