pub enum ErrorKind {
Io(Error),
Url(ParseError),
Provider(Error),
Glob(PatternError),
Msg(String),
// some variants omitted
}Expand description
The kind of an error.
Variants
Io(Error)
Url(ParseError)
Provider(Error)
Glob(PatternError)
Msg(String)
A convenient variant for String.
Implementations
A string describing the error kind.