pub struct WebhookDelivery {
pub id: Uuid,
pub webhook_id: Uuid,
pub event_type: String,
pub payload: Value,
pub status_code: Option<i16>,
pub response_body: Option<String>,
pub success: bool,
pub attempt: i32,
pub created_at: NaiveDateTime,
}Fields§
§id: Uuid§webhook_id: Uuid§event_type: String§payload: Value§status_code: Option<i16>§response_body: Option<String>§success: bool§attempt: i32§created_at: NaiveDateTimeTrait 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