1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/// Shared arguments for the column, load, and msm examples. #[derive(argh::FromArgs)] /// Arguments for tests pub struct Args { /// size of instance #[argh(positional)] pub size: u8, /// prefix of filenames #[argh(positional)] pub name: String, /// skip loading points #[argh(switch)] pub preloaded: bool, /// verbose output #[argh(switch, short = 'v')] pub verbose: bool, }