Struct notify::Error[][src]

pub struct Error {
    pub kind: ErrorKind,
    pub paths: Vec<PathBuf>,
}

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

impl Error[src]

pub fn add_path(self, path: PathBuf) -> Self[src]

Adds a path to the error.

pub fn set_paths(self, paths: Vec<PathBuf>) -> Self[src]

Replaces the paths for the error.

pub fn new(kind: ErrorKind) -> Self[src]

Creates a new Error with empty paths given its kind.

pub fn generic(msg: &str) -> Self[src]

Creates a new generic Error from a message.

pub fn io(err: Error) -> Self[src]

Creates a new i/o Error from a stdlib io::Error.

pub fn path_not_found() -> Self[src]

Creates a new "path not found" error.

pub fn watch_not_found() -> Self[src]

Creates a new "watch not found" error.

pub fn invalid_config(config: &Config) -> Self[src]

Creates a new "invalid config" error from the given Config.

Trait Implementations

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error[src]

impl From<Error> for Error[src]

impl<T> From<PoisonError<T>> for Error[src]

impl From<RecvError> for Error[src]

impl<T> From<SendError<T>> for Error[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.