Enum hopper::Error [] [src]

pub enum Error {
    NoSuchDirectory,
}

Defines the errors that hopper will bubble up

Hopper's error story is pretty bare right now. Hopper should be given sole ownership over a directory and assumes such. If you look in the codebase you'll find that there are a number cases where we bail out--to the detriment of your program--where we might be able to recover but assume that if an unkonwn condition is hit it's a result of something foreign tainting hopper's directory.

Variants

The directory given for use does not exist

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Clone for Error
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Error
[src]