tryx-derive 0.1.0

Derive macro for tryx outcome types
Documentation
1
2
3
4
5
6
7
8
9
use tryx_derive::Outcome;

#[derive(Outcome)]
enum MissingSuccess {
    #[outcome(short_circuit)]
    No(&'static str),
}

fn main() {}