winnow::combinator::parser

Type Alias Recognize

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

Replaced with Take

Aliased Type§

struct Recognize<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>