pub struct EscapedTransform<F, G, E, ExtendItem, Output> {
    normal: F,
    transform: G,
    control_char: char,
    e: PhantomData<E>,
    extend: PhantomData<ExtendItem>,
    o: PhantomData<Output>,
}Expand description
Parser implementation for escaped_transform
Fields§
§normal: F§transform: G§control_char: char§e: PhantomData<E>§extend: PhantomData<ExtendItem>§o: PhantomData<Output>Trait Implementations§
Source§impl<I, Error, F, G, ExtendItem, Output> Parser<I> for EscapedTransform<F, G, Error, ExtendItem, Output>where
    I: Clone + Offset + Input + ExtendInto<Item = ExtendItem, Extender = Output>,
    <F as Parser<I>>::Output: ExtendInto<Item = ExtendItem, Extender = Output>,
    <G as Parser<I>>::Output: ExtendInto<Item = ExtendItem, Extender = Output>,
    <I as Input>::Item: AsChar,
    F: Parser<I, Error = Error>,
    G: Parser<I, Error = Error>,
    Error: ParseError<I>,
 
impl<I, Error, F, G, ExtendItem, Output> Parser<I> for EscapedTransform<F, G, Error, ExtendItem, Output>where
    I: Clone + Offset + Input + ExtendInto<Item = ExtendItem, Extender = Output>,
    <F as Parser<I>>::Output: ExtendInto<Item = ExtendItem, Extender = Output>,
    <G as Parser<I>>::Output: ExtendInto<Item = ExtendItem, Extender = Output>,
    <I as Input>::Item: AsChar,
    F: Parser<I, Error = Error>,
    G: Parser<I, Error = Error>,
    Error: ParseError<I>,
Source§fn process<OM: OutputMode>(
    &mut self,
    input: I,
) -> PResult<OM, I, Self::Output, Self::Error>
 
fn process<OM: OutputMode>( &mut self, input: I, ) -> PResult<OM, I, Self::Output, Self::Error>
A parser takes in input type, and returns a 
Result containing
either the remaining input and the output value, or an errorSource§fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>
 
fn parse(&mut self, input: Input) -> IResult<Input, Self::Output, Self::Error>
A parser takes in input type, and returns a 
Result containing
either the remaining input and the output value, or an errorSource§fn parse_complete(
    &mut self,
    input: Input,
) -> IResult<Input, Self::Output, Self::Error>
 
fn parse_complete( &mut self, input: Input, ) -> IResult<Input, Self::Output, Self::Error>
A parser takes in input type, and returns a 
Result containing
either the remaining input and the output value, or an errorSource§fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
 
fn map_res<G, O2, E2>(self, g: G) -> MapRes<Self, G>
Applies a function returning a 
Result over the result of a parser.Source§fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
 
fn map_opt<G, O2>(self, g: G) -> MapOpt<Self, G>
Applies a function returning an 
Option over the result of a parser.Source§fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
 
fn flat_map<G, H>(self, g: G) -> FlatMap<Self, G>
Creates a second parser from the output of the first one, then apply over the rest of the input
Source§fn and_then<G>(self, g: G) -> AndThen<Self, G>
 
fn and_then<G>(self, g: G) -> AndThen<Self, G>
Applies a second parser over the output of the first one
Source§fn and<G, O2>(self, g: G) -> And<Self, G>
 
fn and<G, O2>(self, g: G) -> And<Self, G>
Applies a second parser after the first one, return their results as a tuple
Auto Trait Implementations§
impl<F, G, E, ExtendItem, Output> Freeze for EscapedTransform<F, G, E, ExtendItem, Output>
impl<F, G, E, ExtendItem, Output> RefUnwindSafe for EscapedTransform<F, G, E, ExtendItem, Output>where
    F: RefUnwindSafe,
    G: RefUnwindSafe,
    E: RefUnwindSafe,
    ExtendItem: RefUnwindSafe,
    Output: RefUnwindSafe,
impl<F, G, E, ExtendItem, Output> Send for EscapedTransform<F, G, E, ExtendItem, Output>
impl<F, G, E, ExtendItem, Output> Sync for EscapedTransform<F, G, E, ExtendItem, Output>
impl<F, G, E, ExtendItem, Output> Unpin for EscapedTransform<F, G, E, ExtendItem, Output>
impl<F, G, E, ExtendItem, Output> UnwindSafe for EscapedTransform<F, G, E, ExtendItem, Output>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more