fack 0.2.0

Declarative error handling library with no_std support and composable code generation
Documentation
1
2
3
4
5
6
7
use fack::prelude::*;
fn custom(_: &Error, _: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { Ok(()) }
#[derive(Debug, Error)]
#[error("outer")]
#[error(display(custom))]
struct Error;
fn main() {}