1 2 3 4 5 6 7
use crate::commands::Command; /// Something that can process commands pub trait CommandQueue { /// Send a command fn send(&self, command: Command); }