guideme 0.2.1

Type-safe inline judgments from TypeSafe Jev: if / match / score as Rust primitives
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(guideme::Choice, Clone, Copy, PartialEq, Eq)]
enum Bad {
    /// billing
    #[guide(
        counterexample = "The dashboard is down",
        counterexample = "The dashboard is down"
    )]
    Billing,
    /// technical
    Technical,
}
fn main() {}