pub trait EventHandler: Send + Sync {
// Required method
fn handle(&self, msg: &BiliMessage, context: &EventContext);
}Expand description
Trait for event handlers (plugins) that process BiliMessage.
pub trait EventHandler: Send + Sync {
// Required method
fn handle(&self, msg: &BiliMessage, context: &EventContext);
}Trait for event handlers (plugins) that process BiliMessage.