pub struct WebhookFailureEvent {
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub url: Option<String>,
pub http_status: Option<f64>,
pub response_or_error: Option<String>,
pub execution_id: Option<String>,
}Fields§
§id: Option<String>§created_at: Option<DateTime<Utc>>§url: Option<String>§http_status: Option<f64>§response_or_error: Option<String>§execution_id: Option<String>Trait Implementations§
Source§impl Clone for WebhookFailureEvent
impl Clone for WebhookFailureEvent
Source§fn clone(&self) -> WebhookFailureEvent
fn clone(&self) -> WebhookFailureEvent
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 WebhookFailureEvent
impl Debug for WebhookFailureEvent
Source§impl Default for WebhookFailureEvent
impl Default for WebhookFailureEvent
Source§fn default() -> WebhookFailureEvent
fn default() -> WebhookFailureEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookFailureEventwhere
WebhookFailureEvent: Default,
impl<'de> Deserialize<'de> for WebhookFailureEventwhere
WebhookFailureEvent: Default,
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
Auto Trait Implementations§
impl Freeze for WebhookFailureEvent
impl RefUnwindSafe for WebhookFailureEvent
impl Send for WebhookFailureEvent
impl Sync for WebhookFailureEvent
impl Unpin for WebhookFailureEvent
impl UnwindSafe for WebhookFailureEvent
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