Struct winnow::error::TreeErrorBase
source · pub struct TreeErrorBase<I> {
pub input: I,
pub kind: ErrorKind,
pub cause: Option<Box<dyn Error + Send + Sync + 'static>>,
}
Expand description
Fields§
§input: I
Parsed input, at the location where the error occurred
kind: ErrorKind
Debug context
cause: Option<Box<dyn Error + Send + Sync + 'static>>