[−][src]Type Definition combine::easy::ParseError
type ParseError<S> = Errors<<S as StreamOnce>::Token, <S as StreamOnce>::Range, <S as StreamOnce>::Position>;
This is supported on crate feature
std only.Convenience alias over Errors for StreamOnce types which makes it possible to specify the
Errors type from a StreamOnce by writing ParseError<Input> instead of Errors<Input::Token, Input::Range, Input::Position>