Struct nom::Map

source ·
pub struct Map<F, G, O1> { /* private fields */ }
Expand description

Implementation of Parser::map

Trait Implementations§

A parser takes in input type, and returns a Result containing either the remaining input and the output value, or an error
Maps a function over the result of a parser
Creates a second parser from the output of the first one, then apply over the rest of the input
Applies a second parser over the output of the first one
Applies a second parser after the first one, return their results as a tuple
Applies a second parser over the input if the first one failed
automatically converts the parser’s output and error values to another type, as long as they implement the From trait

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.