Enum task_queue::error::TaskQueueError [] [src]

pub enum TaskQueueError {
    IllegalStartThreads {
        min: usize,
        max: usize,
    },
    Io(Error),
    IllegalPolicyThreads {
        min: usize,
        max: usize,
        count: usize,
    },
}

Variants

Fields of IllegalStartThreads

Fields of IllegalPolicyThreads

Methods

impl TaskQueueError
[src]

Trait Implementations

impl Debug for TaskQueueError
[src]

Formats the value using the given formatter.

impl Error for TaskQueueError
[src]

A short description of the error. Read more

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

impl Display for TaskQueueError
[src]

Formats the value using the given formatter. Read more

impl From<Error> for TaskQueueError
[src]

Performs the conversion.