pub type ParseError<'a> = VerboseError<&'a [u8]>;
Available on crate feature
verbose-object-parsing-errors
only.Expand description
The type to be used for parse errors.
Aliased Type§
struct ParseError<'a> {
pub errors: Vec<(&'a [u8], VerboseErrorKind)>,
}
Fields§
§errors: Vec<(&'a [u8], VerboseErrorKind)>
List of errors accumulated by VerboseError
, containing the affected
part of input data, and some context