pub enum ErrorKind {
    Generic(String),
    Io(Error),
    PathNotFound,
    WatchNotFound,
    InvalidConfig(Config),
    MaxFilesWatch,
}
Expand description

Error kinds

Variants

Generic(String)

Generic error

May be used in cases where a platform specific error is mapped to this type, or for opaque internal errors.

Io(Error)

I/O errors.

PathNotFound

A path does not exist.

WatchNotFound

Attempted to remove a watch that does not exist.

InvalidConfig(Config)

An invalid value was passed as runtime configuration.

MaxFilesWatch

Can’t watch (more) files, limit on the total number of inotify watches reached

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.