winnow::combinator

Type Alias WithRecognized

source
pub type WithRecognized<F, I, O, E> = WithTaken<F, I, O, E>;
👎Deprecated since 0.6.14: Replaced with WithTaken
Expand description

Replaced with WithTaken

Aliased Type§

struct WithRecognized<F, I, O, E> {
    parser: F,
    i: PhantomData<I>,
    o: PhantomData<O>,
    e: PhantomData<E>,
}

Fields§

§parser: F§i: PhantomData<I>§o: PhantomData<O>§e: PhantomData<E>