fack 0.2.0

Declarative error handling library with no_std support and composable code generation
Documentation
1
2
3
4
5
use fack::prelude::*;
#[derive(Debug, Error)]
#[error(transparent(0))]
struct Error(std::io::Error, u8);
fn main() {}