pub struct FailedWebhooks {
pub values: Vec<FailedWebhook>,
pub max_results: i32,
pub next: Option<String>,
}
Expand description
FailedWebhooks : A page of failed webhooks.
Fields§
§values: Vec<FailedWebhook>
The list of webhooks.
max_results: i32
The maximum number of items on the page. If the list of values is shorter than this number, then there are no more pages.
next: Option<String>
The URL to the next page of results. Present only if the request returned at least one result.The next page may be empty at the time of receiving the response, but new failed webhooks may appear in time. You can save the URL to the next page and query for new results periodically (for example, every hour).
Implementations§
Source§impl FailedWebhooks
impl FailedWebhooks
Sourcepub fn new(values: Vec<FailedWebhook>, max_results: i32) -> FailedWebhooks
pub fn new(values: Vec<FailedWebhook>, max_results: i32) -> FailedWebhooks
A page of failed webhooks.
Trait Implementations§
Source§impl Clone for FailedWebhooks
impl Clone for FailedWebhooks
Source§fn clone(&self) -> FailedWebhooks
fn clone(&self) -> FailedWebhooks
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 FailedWebhooks
impl Debug for FailedWebhooks
Source§impl<'de> Deserialize<'de> for FailedWebhooks
impl<'de> Deserialize<'de> for FailedWebhooks
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
Source§impl PartialEq for FailedWebhooks
impl PartialEq for FailedWebhooks
Source§impl Serialize for FailedWebhooks
impl Serialize for FailedWebhooks
impl StructuralPartialEq for FailedWebhooks
Auto Trait Implementations§
impl Freeze for FailedWebhooks
impl RefUnwindSafe for FailedWebhooks
impl Send for FailedWebhooks
impl Sync for FailedWebhooks
impl Unpin for FailedWebhooks
impl UnwindSafe for FailedWebhooks
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