pub trait Outcome {
    type Commands;

    fn get_commands_to_reach(&self, desired: &Self) -> Self::Commands;
}
Expand description

The externally observable state of the actor.

Required Associated Types

Required Methods

Returns the instructions to emit in order to change the current visible state to the desired one.

Implementors