Enum notify::Error [−][src]
Expand description
Errors generated from the notify crate
Variants
Generic(String)Expand description
Generic error
May be used in cases where a platform specific error is mapped to this type
Io(Error)Expand description
I/O errors
Expand description
The provided path does not exist
Expand description
Attempted to remove a watch that does not exist
Trait Implementations
impl Error for Error[src]
impl Error for Error[src]fn description(&self) -> &str[src]
fn description(&self) -> &str[src]👎 Deprecated since 1.42.0:
use the Display impl or to_string()
fn cause(&self) -> Option<&dyn StdError>[src]
fn cause(&self) -> Option<&dyn StdError>[src]👎 Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
Auto Trait Implementations
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more