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() {}