Trait jppe::ParseError

source ·
pub trait ParseError<I> {
    // Required method
    fn from_error_kind(input: I, kind: ErrorKind) -> Self;
}

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<I> ParseError<I> for Error<I>