pub struct WebhookHealthAlertEmail {
pub to: String,
pub name: String,
pub app_name: String,
pub endpoint_url: String,
pub webhook_type: String,
pub consecutive_failures: u32,
pub last_error: String,
pub dashboard_url: String,
}Expand description
Webhook health alert email
Fields§
§to: String§name: String§app_name: String§endpoint_url: String§webhook_type: String§consecutive_failures: u32§last_error: String§dashboard_url: StringTrait Implementations§
Source§impl Clone for WebhookHealthAlertEmail
impl Clone for WebhookHealthAlertEmail
Source§fn clone(&self) -> WebhookHealthAlertEmail
fn clone(&self) -> WebhookHealthAlertEmail
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WebhookHealthAlertEmail
impl Debug for WebhookHealthAlertEmail
Source§impl<'de> Deserialize<'de> for WebhookHealthAlertEmail
impl<'de> Deserialize<'de> for WebhookHealthAlertEmail
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl EmailTemplate for WebhookHealthAlertEmail
impl EmailTemplate for WebhookHealthAlertEmail
Source§fn template_name(&self) -> &'static str
fn template_name(&self) -> &'static str
Get the template name (without extension) Read more
Source§fn priority(&self) -> EmailPriority
fn priority(&self) -> EmailPriority
Get the priority level (for queue ordering)
Auto Trait Implementations§
impl Freeze for WebhookHealthAlertEmail
impl RefUnwindSafe for WebhookHealthAlertEmail
impl Send for WebhookHealthAlertEmail
impl Sync for WebhookHealthAlertEmail
impl Unpin for WebhookHealthAlertEmail
impl UnwindSafe for WebhookHealthAlertEmail
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more