pub struct WebhookDelivery {Show 13 fields
pub id: String,
pub endpoint_id: String,
pub event_id: String,
pub replay_sequence: i32,
pub replay_of_delivery_id: Option<String>,
pub state: WebhookDeliveryState,
pub attempt_count: i32,
pub next_attempt_at: String,
pub last_outcome_class: Option<WebhookDeliveryOutcomeClass>,
pub last_http_status: Option<i32>,
pub delivered_at: Option<String>,
pub terminal_at: Option<String>,
pub created_at: String,
}Fields§
§id: String§endpoint_id: String§event_id: String§replay_sequence: i32§replay_of_delivery_id: Option<String>§state: WebhookDeliveryState§attempt_count: i32§next_attempt_at: String§last_outcome_class: Option<WebhookDeliveryOutcomeClass>§last_http_status: Option<i32>§delivered_at: Option<String>§terminal_at: Option<String>§created_at: StringTrait 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 ComposeSchema for WebhookDelivery
impl ComposeSchema for WebhookDelivery
Source§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
impl Eq for WebhookDelivery
Source§impl PartialEq for WebhookDelivery
impl PartialEq for WebhookDelivery
Source§impl Serialize for WebhookDelivery
impl Serialize for WebhookDelivery
impl StructuralPartialEq for WebhookDelivery
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.