pub trait Runner<Left, Value, Right>: Command where
    Left: List,
    Value: Bit,
    Right: List
{ type Run: StateTrait; }
Expand description

Represents result of running some Command on State via generic arguments.

Required Associated Types

Result of running on State<Left, Value, Right>.

Implementors