Lines Matching full:some
32 Some(Sp::new(AttrKind::Clap, attr.path.span())) in parse_all()
34 Some(Sp::new(AttrKind::StructOpt, attr.path.span())) in parse_all()
36 Some(Sp::new(AttrKind::Command, attr.path.span())) in parse_all()
38 Some(Sp::new(AttrKind::Group, attr.path.span())) in parse_all()
40 Some(Sp::new(AttrKind::Arg, attr.path.span())) in parse_all()
42 Some(Sp::new(AttrKind::Value, attr.path.span())) in parse_all()
87 "rename_all" => Some(MagicAttrName::RenameAll), in parse()
88 "rename_all_env" => Some(MagicAttrName::RenameAllEnv), in parse()
89 "skip" => Some(MagicAttrName::Skip), in parse()
90 "next_display_order" => Some(MagicAttrName::NextDisplayOrder), in parse()
91 "next_help_heading" => Some(MagicAttrName::NextHelpHeading), in parse()
92 "default_value_t" => Some(MagicAttrName::DefaultValueT), in parse()
93 "default_values_t" => Some(MagicAttrName::DefaultValuesT), in parse()
94 "default_value_os_t" => Some(MagicAttrName::DefaultValueOsT), in parse()
95 "default_values_os_t" => Some(MagicAttrName::DefaultValuesOsT), in parse()
96 "long" => Some(MagicAttrName::Long), in parse()
97 "short" => Some(MagicAttrName::Short), in parse()
98 "value_parser" => Some(MagicAttrName::ValueParser), in parse()
99 "action" => Some(MagicAttrName::Action), in parse()
100 "env" => Some(MagicAttrName::Env), in parse()
101 "flatten" => Some(MagicAttrName::Flatten), in parse()
102 "value_enum" => Some(MagicAttrName::ValueEnum), in parse()
103 "from_global" => Some(MagicAttrName::FromGlobal), in parse()
104 "subcommand" => Some(MagicAttrName::Subcommand), in parse()
105 "external_subcommand" => Some(MagicAttrName::ExternalSubcommand), in parse()
106 "verbatim_doc_comment" => Some(MagicAttrName::VerbatimDocComment), in parse()
107 "about" => Some(MagicAttrName::About), in parse()
108 "long_about" => Some(MagicAttrName::LongAbout), in parse()
109 "long_help" => Some(MagicAttrName::LongHelp), in parse()
110 "author" => Some(MagicAttrName::Author), in parse()
111 "version" => Some(MagicAttrName::Version), in parse()
120 Some(AttrValue::LitStr(lit)) in parse()
123 Ok(expr) => Some(AttrValue::Expr(expr)), in parse()
137 Some(AttrValue::Call(Vec::from_iter(method_args))) in parse()