Enum live_reload::Error [] [src]

pub enum Error {
    Io(Error),
    Watch(Error),
    MismatchedHost,
}

The errors that can occur while working with a Reloadable object.

Variants

An I/O error occurred while trying to load or reload the library. This can indicate that the file is missing, or that the library didn't have the expected RELOAD_API symbol.

An error occurred while creating the filesystem watcher.

The Host type of the host and library don't match.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more