Enum round_based::dev::AsyncSimulationError[][src]

#[non_exhaustive]
pub enum AsyncSimulationError<SM: StateMachine> {
    ProtocolExecution(Error<SM::Err, RecvError, SendError<Msg<SM::MessageBody>>>),
    ProtocolExecutionPanicked(JoinError),
    SimulationExhausted,
}
This is supported on crate feature dev only.
Expand description

Possible errors that async simulation can be resulted in

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ProtocolExecution(Error<SM::Err, RecvError, SendError<Msg<SM::MessageBody>>>)

Protocol execution error

Tuple Fields of ProtocolExecution

0: Error<SM::Err, RecvError, SendError<Msg<SM::MessageBody>>>
ProtocolExecutionPanicked(JoinError)

Protocol execution produced a panic

Tuple Fields of ProtocolExecutionPanicked

0: JoinError
SimulationExhausted

Simulation ran twice

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.