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
name: &'a str
The name of the parameter.
is_optional: bool
Whether the parameter is optional.