Enum ptagslib::bin::ErrorKind
[−]
pub enum ErrorKind {
Msg(String),
Git(ErrorKind),
Ctags(ErrorKind),
Io(Error),
Utf8(Utf8Error),
Opt(Error),
Toml(Error),
// some variants omitted
}The kind of an error.
Variants
Msg(String)A convenient variant for String.
Git(ErrorKind)Io(Error)Utf8(Utf8Error)Opt(Error)Toml(Error)
Methods
impl ErrorKind
pub fn description(&self) -> &str
A string describing the error kind.
Trait Implementations
impl From<ErrorKind> for Error
impl Debug for ErrorKind
fn fmt(&self, __arg_0: &mut Formatter) -> Result
Formats the value using the given formatter. Read more