use crate::commands::parser::{Text, Parse}; pub enum Commands { Start(Text), } impl<'a> Parse<'a> for Commands { type Res = Commands; fn parse(self }