Enum async_backplane::Crash[][src]

pub enum Crash<Error> {
    PowerOff(DeviceID),
    Panic(Unwind),
    Error(Error),
    Cascade(DeviceIDFault),
}
Expand description

Something went wrong with a Device.

Variants

PowerOff(DeviceID)

We were asked to shut down.

Panic(Unwind)

The Future we were executing panicked.

Error(Error)

The Future we were executing returned an Err.

Cascade(DeviceIDFault)

A device we depended upon faulted.

Implementations

Did the future unwind panic?

Did the future return Err?

Did a Device we depend on fault?

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.