Trait winnow::error::FromExternalError
source · pub trait FromExternalError<I, E> {
// Required method
fn from_external_error(input: &I, kind: ErrorKind, e: E) -> Self;
}
Expand description
Create a new error with an external error, from std::str::FromStr
This trait is required by the Parser::try_map
combinator.
Required Methods§
sourcefn from_external_error(input: &I, kind: ErrorKind, e: E) -> Self
fn from_external_error(input: &I, kind: ErrorKind, e: E) -> Self
Like ParserError::from_error_kind
but also include an external error.
Object Safety§
This trait is not object safe.