pub trait Formater {
// Required methods
fn as_command(self) -> String;
fn as_tip(self) -> String;
fn as_tip_cotinuation(self) -> String;
fn concat(self, postfix: &'static str) -> String;
}pub trait Formater {
// Required methods
fn as_command(self) -> String;
fn as_tip(self) -> String;
fn as_tip_cotinuation(self) -> String;
fn concat(self, postfix: &'static str) -> String;
}