pub trait ParseError<I>: ParseError<I> {
    // Required methods
    fn from_dpmaster_error_kind(input: I, kind: ErrorKind) -> Self;
    fn append_dpmaster(input: I, kind: ErrorKind, other: Self) -> Self;
}

Required Methods§

source

fn from_dpmaster_error_kind(input: I, kind: ErrorKind) -> Self

source

fn append_dpmaster(input: I, kind: ErrorKind, other: Self) -> Self

Implementations on Foreign Types§

source§

impl<I> ParseError<I> for ()

source§

fn from_dpmaster_error_kind(_: I, _: ErrorKind) -> Self

source§

fn append_dpmaster(_: I, _: ErrorKind, _: Self) -> Self

Implementors§