Enum convey::Error[][src]

pub enum Error {
    Io(Error),
    ParseColorError(ParseColorError),
    Json(JsonError),
    WorkerError(String),
    SyncError,
}

Output's error type

Variants

I/O Error

Error parsing a color value

Error dealing with JSON

Error in formatting worker

Error syncing output

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl From<Error> for Error
[src]

Performs the conversion.

impl From<ParseColorError> for Error
[src]

Performs the conversion.

impl From<JsonError> for Error
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error