pub struct WebhookDelivery {
pub id: Uuid,
pub webhook_id: Uuid,
pub event_id: Uuid,
pub status: DeliveryStatus,
pub attempt: u32,
pub max_attempts: u32,
pub response_status: Option<u16>,
pub response_body: Option<String>,
pub error: Option<String>,
pub created_at: DateTime<Utc>,
pub next_retry_at: Option<DateTime<Utc>>,
}Expand description
A webhook delivery attempt record
Fields§
§id: Uuid§webhook_id: Uuid§event_id: Uuid§status: DeliveryStatus§attempt: u32§max_attempts: u32§response_status: Option<u16>§response_body: Option<String>§error: Option<String>§created_at: DateTime<Utc>§next_retry_at: Option<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 · 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