1 2 3 4 5 6 7 8 9 10 11 12
//! Test case exercising named-field subcommand docs variants. use ortho_config::OrthoConfigSubcommandDocs; struct Args; #[derive(OrthoConfigSubcommandDocs)] enum Commands { Run { args: Args }, } fn main() {}