[][src]Enum ipc_communication::ParallelRunError

pub enum ParallelRunError {
    ThreadPanic {
        thread_name: String,
        source: PanicError,
    },
    UnjoinedThreadPanic {
        source: PanicError,
    },
    IpcError {
        thread_name: String,
        source: Error,
    },
    SpawnError {
        channel_id: usize,
        source: Error,
    },
    RouterSpawn {
        source: Error,
    },
}

An error that happened during a parallel execution of processors.

Variants

ThreadPanic

A thread has panicked.

Fields of ThreadPanic

thread_name: String

Thread name.

source: PanicError

Panic message.

UnjoinedThreadPanic

An unknown thread has panicked. Shouldn't happen.

Fields of UnjoinedThreadPanic

source: PanicError

Panic message.

IpcError

IPC communication error.

Fields of IpcError

thread_name: String

Thread name.

source: Error

IPC error.

SpawnError

Spawn of a processor failed.

Fields of SpawnError

channel_id: usize

Channel ID.

source: Error

Spawn I/O error.

RouterSpawn

Can't spawn a router thread.

Fields of RouterSpawn

source: Error

Spawn I/O error.

Trait Implementations

impl Debug for ParallelRunError[src]

impl Display for ParallelRunError[src]

impl Error for ParallelRunError where
    Self: Debug + Display
[src]

impl ErrorCompat for ParallelRunError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> AsErrorSource for T where
    T: 'static + Error
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,