pub trait WebhookMessage: Debug + Send + Sync { // Required methods fn webhook_url(&self) -> &str; fn serialize(&self) -> String; }
Send a message to a webhook endpoint.