pub enum ParserErrorKind {
IoError(Error),
IoNotEnoughBytes(),
EofError(Error),
RemoteIoError(String),
EofExpected,
ParseError(String),
UnknownAttr(String),
TruncatedMsg(String),
Deprecated(String),
Unsupported(String),
FilterError(String),
}
Variants
IoError(Error)
Tuple Fields
0: Error
IoNotEnoughBytes()
Tuple Fields
EofError(Error)
Tuple Fields
0: Error
RemoteIoError(String)
Tuple Fields
0: String
EofExpected
ParseError(String)
Tuple Fields
0: String
UnknownAttr(String)
Tuple Fields
0: String
TruncatedMsg(String)
Tuple Fields
0: String
Deprecated(String)
Tuple Fields
0: String
Unsupported(String)
Tuple Fields
0: String
FilterError(String)
Tuple Fields
0: String
Trait Implementations
implement Display trait for Error which satistifies the std::error::Error trait’s requirement (must implement Display and Debug traits, Debug already derived)
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for ParserErrorKind
impl Send for ParserErrorKind
impl Sync for ParserErrorKind
impl Unpin for ParserErrorKind
impl !UnwindSafe for ParserErrorKind
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more