Add missing impl for StdError

This commit is contained in:
Félix Saparelli 2018-09-09 10:38:07 +12:00
parent 9e09c98f96
commit 3c1eaa51f7
1 changed files with 7 additions and 1 deletions

View File

@ -11,7 +11,13 @@ pub enum Error {
Notify(notify::Error),
}
impl StdError for Error {}
impl StdError for Error {
fn description (&self) -> &str {
// This method is soft-deprecated and shouldn't be used,
// see Display for the actual description.
"a watchexec error"
}
}
impl From<globset::Error> for Error {
fn from(err: globset::Error) -> Self {