Trait Command

Source
pub trait Command { }
Expand description

Type-level enum of commands. Supertrait of Runner

Implementors§

Source§

impl Command for EOF

Source§

impl<Body, Next> Command for Cycle<Body, Next>
where Body: Command, Next: Command,

Source§

impl<Next> Command for Flip<Next>
where Next: Command,

Source§

impl<Next> Command for Left<Next>
where Next: Command,

Source§

impl<Next> Command for Right<Next>
where Next: Command,