pub trait Messageable {
// Required methods
fn error_message(&self) -> Message;
fn warning_message(&self) -> Message;
fn info_message(&self) -> Message;
fn command_message(&self) -> Message;
}
pub trait Messageable {
// Required methods
fn error_message(&self) -> Message;
fn warning_message(&self) -> Message;
fn info_message(&self) -> Message;
fn command_message(&self) -> Message;
}