Struct winnow::combinator::Map

source ·
pub struct Map<F, G, I, O, O2, E>
where F: Parser<I, O, E>, G: FnMut(O) -> O2,
{ /* private fields */ }
Expand description

Implementation of Parser::map

Trait Implementations§

source§

impl<F, G, I, O, O2, E> Parser<I, O2, E> for Map<F, G, I, O, O2, E>
where F: Parser<I, O, E>, G: FnMut(O) -> O2,

source§

fn parse_next(&mut self, i: &mut I) -> PResult<O2, E>

Take tokens from the Stream, turning it into the output Read more
source§

fn parse_peek(&mut self, input: I) -> IResult<I, O, E>

Take tokens from the Stream, turning it into the output Read more
source§

fn by_ref(&mut self) -> ByRef<'_, Self>
where Self: Sized,

Treat &mut Self as a parser Read more
source§

fn value<O2>(self, val: O2) -> Value<Self, I, O, O2, E>
where Self: Sized, O2: Clone,

Produce the provided value Read more
source§

fn default_value<O2>(self) -> DefaultValue<Self, I, O, O2, E>
where Self: Sized, O2: Default,

Produce a type’s default value Read more
source§

fn void(self) -> Void<Self, I, O, E>
where Self: Sized,

Discards the output of the Parser Read more
source§

fn output_into<O2>(self) -> OutputInto<Self, I, O, O2, E>
where Self: Sized, O: Into<O2>,

Convert the parser’s output to another type using std::convert::From Read more
source§

fn map<G, O2>(self, map: G) -> Map<Self, G, I, O, O2, E>
where G: FnMut(O) -> O2, Self: Sized,

Maps a function over the output of a parser Read more
source§

fn flat_map<G, H, O2>(self, map: G) -> FlatMap<Self, G, H, I, O, O2, E>
where Self: Sized, G: FnMut(O) -> H, H: Parser<I, O2, E>,

Creates a parser from the output of this one Read more
source§

fn complete_err(self) -> CompleteErr<Self>
where Self: Sized,

source§

fn err_into<E2>(self) -> ErrInto<Self, I, O, E, E2>
where Self: Sized, E: Into<E2>,

Convert the parser’s error to another type using std::convert::From

Auto Trait Implementations§

§

impl<F, G, I, O, O2, E> Freeze for Map<F, G, I, O, O2, E>
where F: Freeze, G: Freeze,

§

impl<F, G, I, O, O2, E> RefUnwindSafe for Map<F, G, I, O, O2, E>

§

impl<F, G, I, O, O2, E> Send for Map<F, G, I, O, O2, E>
where F: Send, G: Send, I: Send, O: Send, O2: Send, E: Send,

§

impl<F, G, I, O, O2, E> Sync for Map<F, G, I, O, O2, E>
where F: Sync, G: Sync, I: Sync, O: Sync, O2: Sync, E: Sync,

§

impl<F, G, I, O, O2, E> Unpin for Map<F, G, I, O, O2, E>
where F: Unpin, G: Unpin, I: Unpin, O: Unpin, O2: Unpin, E: Unpin,

§

impl<F, G, I, O, O2, E> UnwindSafe for Map<F, G, I, O, O2, E>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<P, I, O, R, E> RecoverableParser<I, O, R, E> for P

source§

fn recoverable_parse(&mut self, input: I) -> (I, Option<O>, Vec<R>)

Available on crate features unstable-recover and std only.
Collect all errors when parsing the input Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.