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.

Possible errors that async simulation can be resulted in

Variants (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

ProtocolExecutionPanicked(JoinError)

Protocol execution produced a panic

SimulationExhausted

Simulation ran twice

Trait Implementations

impl<SM: Debug + StateMachine> Debug for AsyncSimulationError<SM> where
    SM::Err: Debug,
    SM::MessageBody: Debug
[src]

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

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[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, 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.