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.
Protocol execution error
ProtocolExecutionPanicked(JoinError)Protocol execution produced a panic
Tuple Fields of ProtocolExecutionPanicked
0: JoinErrorSimulation ran twice
Trait Implementations
impl<SM: Debug + StateMachine> Debug for AsyncSimulationError<SM> where
SM::Err: Debug,
SM::MessageBody: Debug,
This is supported on crate feature async-runtime only.
impl<SM: Debug + StateMachine> Debug for AsyncSimulationError<SM> where
SM::Err: Debug,
SM::MessageBody: Debug,
This is supported on crate feature
async-runtime only.