pub trait Runner<Left, Value, Right, Default>: Command where
    Left: List,
    Value: Bit,
    Right: List,
    Default: Bit
{ 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