pub struct WebhookDelivery {
pub id: Uuid,
pub webhook_id: Uuid,
pub event_type: String,
pub event_id: Uuid,
pub status: DeliveryStatus,
pub attempts: u32,
pub last_attempt_at: Option<DateTime<Utc>>,
pub response_status: Option<u16>,
pub response_body: Option<String>,
pub error: Option<String>,
pub created_at: DateTime<Utc>,
}Available on crate feature
events only.Expand description
Webhook delivery attempt record
Fields§
§id: Uuid§webhook_id: Uuid§event_type: String§event_id: Uuid§status: DeliveryStatus§attempts: u32§last_attempt_at: Option<DateTime<Utc>>§response_status: Option<u16>§response_body: Option<String>§error: Option<String>§created_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for WebhookDelivery
impl Clone for WebhookDelivery
Source§fn clone(&self) -> WebhookDelivery
fn clone(&self) -> WebhookDelivery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WebhookDelivery
impl Debug for WebhookDelivery
Source§impl<'de> Deserialize<'de> for WebhookDelivery
impl<'de> Deserialize<'de> for WebhookDelivery
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 WebhookDelivery
impl RefUnwindSafe for WebhookDelivery
impl Send for WebhookDelivery
impl Sync for WebhookDelivery
impl Unpin for WebhookDelivery
impl UnsafeUnpin for WebhookDelivery
impl UnwindSafe for WebhookDelivery
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