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