pub trait BotCmdHandler:
Send
+ Sync
+ UnwindSafe
+ RefUnwindSafe {
// Required method
fn run(&self, _: &State, _: &MsgMetadata<'_>, _: &Yaml) -> BotCmdResult;
}
pub trait BotCmdHandler:
Send
+ Sync
+ UnwindSafe
+ RefUnwindSafe {
// Required method
fn run(&self, _: &State, _: &MsgMetadata<'_>, _: &Yaml) -> BotCmdResult;
}