Struct cpython::argparse::ParamDescription [] [src]

pub struct ParamDescription<'a> {
    pub name: &'a str,
    pub is_optional: bool,
}

Description of a python parameter; used for parse_args().

Fields

The name of the parameter.

Whether the parameter is optional.