pub struct Error {
pub kind: ErrorKind,
pub paths: Vec<PathBuf>,
}
Expand description
Notify error type.
Errors are emitted either at creation time of a Watcher
, or during the event stream. They
range from kernel errors to filesystem errors to argument errors.
Errors can be general, or they can be about specific paths or subtrees. In that later case, the
error’s paths
field will be populated.
Fields§
§kind: ErrorKind
Kind of the error.
paths: Vec<PathBuf>
Relevant paths to the error, if any.
Implementations§
Source§impl Error
impl Error
Sourcepub fn io_watch(err: Error) -> Self
pub fn io_watch(err: Error) -> Self
Similar to Error::io
, but specifically handles io::ErrorKind::NotFound
.
Sourcepub fn path_not_found() -> Self
pub fn path_not_found() -> Self
Creates a new “path not found” error.
Sourcepub fn watch_not_found() -> Self
pub fn watch_not_found() -> Self
Creates a new “watch not found” error.
Sourcepub fn invalid_config(config: &Config) -> Self
pub fn invalid_config(config: &Config) -> Self
Creates a new “invalid config” error from the given Config
.
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn cause(&self) -> Option<&dyn StdError>
fn cause(&self) -> Option<&dyn StdError>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl<T> From<PoisonError<T>> for Error
impl<T> From<PoisonError<T>> for Error
Source§fn from(err: PoisonError<T>) -> Self
fn from(err: PoisonError<T>) -> Self
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 56 bytes