1/// Interface for all commands 2pub trait Command { 3 /// Convert command to printable string 4 fn to_raw(&self) -> String; 5}