pub struct NewWebhookDelivery {
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 NewWebhookDelivery
impl Clone for NewWebhookDelivery
Source§fn clone(&self) -> NewWebhookDelivery
fn clone(&self) -> NewWebhookDelivery
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 NewWebhookDelivery
impl Debug for NewWebhookDelivery
Source§impl<'de> Deserialize<'de> for NewWebhookDelivery
impl<'de> Deserialize<'de> for NewWebhookDelivery
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 NewWebhookDelivery
impl RefUnwindSafe for NewWebhookDelivery
impl Send for NewWebhookDelivery
impl Sync for NewWebhookDelivery
impl Unpin for NewWebhookDelivery
impl UnsafeUnpin for NewWebhookDelivery
impl UnwindSafe for NewWebhookDelivery
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