cgp-error-std 0.5.0-beta2

Context-generic programming error handlers implemented using `std::error::Error`
Documentation
1
2
3
4
5
6
7
8
9
#![no_std]

extern crate alloc;

mod impls;
mod types;

pub use impls::{DebugBoxedStdError, DisplayBoxedStdError, RaiseBoxedStdError, UseBoxedStdError};
pub use types::{Error, StringError, WrapError};