Home
last modified time | relevance | path

Searched refs:ParsedArg (Results 1 – 3 of 3) sorted by relevance

/third_party/rust/crates/clap/clap_lex/src/
Dlib.rs180 pub fn next(&self, cursor: &mut ArgCursor) -> Option<ParsedArg<'_>> { in next()
181 self.next_os(cursor).map(ParsedArg::new) in next()
192 pub fn peek(&self, cursor: &ArgCursor) -> Option<ParsedArg<'_>> { in peek()
193 self.peek_os(cursor).map(ParsedArg::new) in peek()
275 pub struct ParsedArg<'s> { struct
280 impl<'s> ParsedArg<'s> { implementation
/third_party/rust/crates/clap/clap_complete/src/
Ddynamic.rs355 arg: &clap_lex::ParsedArg<'_>, in complete_arg()
/third_party/rust/crates/clap/src/parser/
Dparser.rs486 arg_os: &clap_lex::ParsedArg<'_>, in match_arg_error()
643 fn is_new_arg(&self, next: &clap_lex::ParsedArg<'_>, current_positional: &Arg) -> bool { in is_new_arg()