Enum git_workarea::ErrorKind
[−]
pub enum ErrorKind {
Msg(String),
Git(String),
InvalidRef(String),
}The kind of an error.
Variants
Msg(String)A convenient variant for String.
Git(String)A git error occurred.
InvalidRef(String)An invalid ref was used.
Methods
impl ErrorKind
fn description(&self) -> &str
A string describing the error kind.