pub struct WebhookDeliverySummary {
pub total_count: u32,
pub success_count: u32,
pub data: Vec<WebhookDelivery>,
}Expand description
A summary of a resource’s webhook delivery attempts.
Fields§
§total_count: u32How many deliveries were attempted.
success_count: u32How many deliveries succeeded.
data: Vec<WebhookDelivery>The individual delivery attempts.
Trait Implementations§
Source§impl Clone for WebhookDeliverySummary
impl Clone for WebhookDeliverySummary
Source§fn clone(&self) -> WebhookDeliverySummary
fn clone(&self) -> WebhookDeliverySummary
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 WebhookDeliverySummary
impl Debug for WebhookDeliverySummary
Source§impl<'de> Deserialize<'de> for WebhookDeliverySummary
impl<'de> Deserialize<'de> for WebhookDeliverySummary
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 WebhookDeliverySummary
impl RefUnwindSafe for WebhookDeliverySummary
impl Send for WebhookDeliverySummary
impl Sync for WebhookDeliverySummary
impl Unpin for WebhookDeliverySummary
impl UnsafeUnpin for WebhookDeliverySummary
impl UnwindSafe for WebhookDeliverySummary
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