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
Simulation 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.Auto Trait Implementations
impl<SM> RefUnwindSafe for AsyncSimulationError<SM> where
<SM as StateMachine>::Err: RefUnwindSafe,
<SM as StateMachine>::MessageBody: RefUnwindSafe, impl<SM> Send for AsyncSimulationError<SM> where
<SM as StateMachine>::Err: Send,
<SM as StateMachine>::MessageBody: Send, impl<SM> Sync for AsyncSimulationError<SM> where
<SM as StateMachine>::Err: Sync,
<SM as StateMachine>::MessageBody: Sync, impl<SM> Unpin for AsyncSimulationError<SM> where
<SM as StateMachine>::Err: Unpin,
<SM as StateMachine>::MessageBody: Unpin, impl<SM> UnwindSafe for AsyncSimulationError<SM> where
<SM as StateMachine>::Err: UnwindSafe,
<SM as StateMachine>::MessageBody: UnwindSafe,