Searched refs:TypedValueParser (Results 1 – 6 of 6) sorted by relevance
/third_party/rust/crates/clap/src/builder/ |
D | value_parser.rs | 109 P: TypedValueParser, in new() argument 284 P: TypedValueParser + Send + Sync + 'static, 599 P: TypedValueParser<Value = T>, 607 let value = ok!(TypedValueParser::parse_ref(self, cmd, arg, value)); in parse_ref() 617 let value = ok!(TypedValueParser::parse(self, cmd, arg, value)); in parse() 685 pub trait TypedValueParser: Clone + Send + Sync + 'static { interface 816 impl<F, T, E> TypedValueParser for F 860 impl TypedValueParser for StringValueParser { 869 TypedValueParser::parse(self, cmd, arg, value.to_owned()) in parse_ref() 908 impl TypedValueParser for OsStringValueParser { [all …]
|
D | mod.rs | 52 pub use value_parser::TypedValueParser;
|
/third_party/rust/crates/clap/tests/derive_ui/ |
D | tuple_struct.stderr | 21 candidate #2: `TypedValueParser`
|
/third_party/rust/crates/clap/examples/ |
D | typed-derive.rs | 1 use clap::builder::TypedValueParser as _;
|
/third_party/rust/crates/clap/tests/derive/ |
D | flags.rs | 16 use clap::builder::TypedValueParser as _;
|
/third_party/rust/crates/clap/ |
D | CHANGELOG.md | 203 - Added `TypedValueParser::try_map` for when adapting an existing `TypedValueParser` can fail 493 …could use `Arg::value_delimiter` or implement a custom parser with `TypedValueParser` as it was mo… 719 - `Arg::validator_regex` with users providing their own `builder::TypedValueParser` (#3756) 747 …- For most other cases, a type implementing `TypedValueParser` will be needed and specify it with … 752 - Several built-in `TypedValueParser`s available with an API open for expansion
|