pub struct GetFailedWebhooksParams {
pub max_results: Option<i32>,
pub after: Option<i64>,
}
Expand description
struct for passing parameters to the method get_failed_webhooks
Fields§
§max_results: Option<i32>
The maximum number of webhooks to return per page. If obeying the maxResults directive would result in records with the same failure time being split across pages, the directive is ignored and all records with the same failure time included on the page.
after: Option<i64>
The time after which any webhook failure must have occurred for the record to be returned, expressed as milliseconds since the UNIX epoch.
Trait Implementations§
Source§impl Clone for GetFailedWebhooksParams
impl Clone for GetFailedWebhooksParams
Source§fn clone(&self) -> GetFailedWebhooksParams
fn clone(&self) -> GetFailedWebhooksParams
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 moreAuto Trait Implementations§
impl Freeze for GetFailedWebhooksParams
impl RefUnwindSafe for GetFailedWebhooksParams
impl Send for GetFailedWebhooksParams
impl Sync for GetFailedWebhooksParams
impl Unpin for GetFailedWebhooksParams
impl UnwindSafe for GetFailedWebhooksParams
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