pub struct GetWebhooksParams {
pub limit: Option<i64>,
pub offset: Option<i64>,
}Expand description
Parameters for list_webhooks.
Fields§
§limit: Option<i64>Maximum number of webhooks returned.
offset: Option<i64>Starting index into the result set.
Trait Implementations§
Source§impl Clone for GetWebhooksParams
impl Clone for GetWebhooksParams
Source§fn clone(&self) -> GetWebhooksParams
fn clone(&self) -> GetWebhooksParams
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 GetWebhooksParams
impl Debug for GetWebhooksParams
Source§impl Default for GetWebhooksParams
impl Default for GetWebhooksParams
Source§fn default() -> GetWebhooksParams
fn default() -> GetWebhooksParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetWebhooksParams
impl<'de> Deserialize<'de> for GetWebhooksParams
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 GetWebhooksParams
impl RefUnwindSafe for GetWebhooksParams
impl Send for GetWebhooksParams
impl Sync for GetWebhooksParams
impl Unpin for GetWebhooksParams
impl UnsafeUnpin for GetWebhooksParams
impl UnwindSafe for GetWebhooksParams
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