Struct rain_task::TaskError[][src]

pub struct TaskError { /* fields omitted */ }

A string error for the task functions.

A conversion from io::Error is provided for convenience via conversion to string. TODO: Add backtrace on error construction, possibly use error_chain.

Trait Implementations

impl Clone for TaskError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TaskError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for TaskError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for TaskError
[src]

impl Hash for TaskError
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl<'a> From<&'a str> for TaskError
[src]

Performs the conversion.

impl From<String> for TaskError
[src]

Performs the conversion.

impl From<Error> for TaskError
[src]

Performs the conversion.

impl<'a> Display for TaskError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for TaskError

impl Sync for TaskError