/// Command #[derive(argp::FromArgs)] struct Cmd { #[argp(positional)] /// positional positional: Vec, #[argp(positional, greedy)] /// remainder remainder: Vec, } fn main() {}