Modules§
Macros§
- impl_
show_ with - Implements the
Show
trait for $($T)+ using the existing trait$trait
. - parse
- Runs the parser with the given name and input, then [
parsers::eof()
]. - parse_
context - Returns the context from the current mark to the input position inclusive.
- parse_
current_ marker - Return the mark at the current parsing position.
- parse_
error - Returns an
Err(ParseError::new($e))
. Can used likeformat!
as well. - parse_
last_ marker - Returns the last marker that was set.
- parse_
mark - Sets the marker to the current position.
- parse_
try - Runs a parser returning
Some
if it succeeds orNone
otherwise.