Lines Matching refs:error
22 pub use nom::{error::ErrorKind, error::Error, Err, IResult, Needed};
46 /// An error occurred in an underlying nom parser.
68 /// The remainder of the input stream at the time of the error.
70 /// The error that occurred.
71 pub error: ErrorKind,
84 error: e.1,
89 impl<I> From<::nom::error::Error<I>> for Error<I> {
90 fn from(e: ::nom::error::Error<I>) -> Self {
93 error: e.code.into(),
98 impl<I> ::nom::error::ParseError<I> for Error<I> {
102 error: kind.into(),