pub struct ListWebhooksInput {
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§max_results: Option<i64>
The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value.
next_token: Option<String>
The token that was returned from the previous ListWebhooks call, which can be used to return the next set of webhooks in the list.
Trait Implementations§
Source§impl Clone for ListWebhooksInput
impl Clone for ListWebhooksInput
Source§fn clone(&self) -> ListWebhooksInput
fn clone(&self) -> ListWebhooksInput
Returns a copy 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 ListWebhooksInput
impl Debug for ListWebhooksInput
Source§impl Default for ListWebhooksInput
impl Default for ListWebhooksInput
Source§fn default() -> ListWebhooksInput
fn default() -> ListWebhooksInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListWebhooksInput
impl PartialEq for ListWebhooksInput
Source§impl Serialize for ListWebhooksInput
impl Serialize for ListWebhooksInput
impl StructuralPartialEq for ListWebhooksInput
Auto Trait Implementations§
impl Freeze for ListWebhooksInput
impl RefUnwindSafe for ListWebhooksInput
impl Send for ListWebhooksInput
impl Sync for ListWebhooksInput
impl Unpin for ListWebhooksInput
impl UnwindSafe for ListWebhooksInput
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