Struct move_command_line_common::parser::Parser
source · [−]Implementations
sourceimpl<'a, Tok: Token, I: Iterator<Item = (Tok, &'a str)>> Parser<'a, Tok, I>
impl<'a, Tok: Token, I: Iterator<Item = (Tok, &'a str)>> Parser<'a, Tok, I>
pub fn new<T: IntoIterator<Item = (Tok, &'a str), IntoIter = I>>(v: T) -> Self
pub fn advance_any(&mut self) -> Result<(Tok, &'a str)>
pub fn advance(&mut self, expected_token: Tok) -> Result<&'a str>
pub fn peek(&mut self) -> Option<(Tok, &'a str)>
pub fn peek_tok(&mut self) -> Option<Tok>
pub fn parse_list<R>(
&mut self,
parse_list_item: impl Fn(&mut Self) -> Result<R>,
delim: Tok,
end_token: Tok,
allow_trailing_delim: bool
) -> Result<Vec<R>>
sourceimpl<'a, I: Iterator<Item = (TypeToken, &'a str)>> Parser<'a, TypeToken, I>
impl<'a, I: Iterator<Item = (TypeToken, &'a str)>> Parser<'a, TypeToken, I>
pub fn parse_type(&mut self) -> Result<ParsedType>
sourceimpl<'a, I: Iterator<Item = (ValueToken, &'a str)>> Parser<'a, ValueToken, I>
impl<'a, I: Iterator<Item = (ValueToken, &'a str)>> Parser<'a, ValueToken, I>
pub fn parse_value<Extra: ParsableValue>(
&mut self
) -> Result<ParsedValue<Extra>>
pub fn parse_address(&mut self) -> Result<ParsedAddress>
Auto Trait Implementations
impl<'a, Tok, I> RefUnwindSafe for Parser<'a, Tok, I> where
I: RefUnwindSafe,
Tok: RefUnwindSafe,
impl<'a, Tok, I> Send for Parser<'a, Tok, I> where
I: Send,
Tok: Send,
impl<'a, Tok, I> Sync for Parser<'a, Tok, I> where
I: Sync,
Tok: Sync,
impl<'a, Tok, I> Unpin for Parser<'a, Tok, I> where
I: Unpin,
Tok: Unpin,
impl<'a, Tok, I> UnwindSafe for Parser<'a, Tok, I> where
I: UnwindSafe,
Tok: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more