pub struct ListWebhooksOutput {
pub next_token: Option<String>,
pub webhooks: Option<Vec<ListWebhookItem>>,
}
Fields§
§next_token: Option<String>
If the amount of returned information is significantly large, an identifier is also returned and can be used in a subsequent ListWebhooks call to return the next set of webhooks in the list.
webhooks: Option<Vec<ListWebhookItem>>
The JSON detail returned for each webhook in the list output for the ListWebhooks call.
Trait Implementations§
Source§impl Clone for ListWebhooksOutput
impl Clone for ListWebhooksOutput
Source§fn clone(&self) -> ListWebhooksOutput
fn clone(&self) -> ListWebhooksOutput
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 ListWebhooksOutput
impl Debug for ListWebhooksOutput
Source§impl Default for ListWebhooksOutput
impl Default for ListWebhooksOutput
Source§fn default() -> ListWebhooksOutput
fn default() -> ListWebhooksOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListWebhooksOutput
impl<'de> Deserialize<'de> for ListWebhooksOutput
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 ListWebhooksOutput
impl PartialEq for ListWebhooksOutput
impl StructuralPartialEq for ListWebhooksOutput
Auto Trait Implementations§
impl Freeze for ListWebhooksOutput
impl RefUnwindSafe for ListWebhooksOutput
impl Send for ListWebhooksOutput
impl Sync for ListWebhooksOutput
impl Unpin for ListWebhooksOutput
impl UnwindSafe for ListWebhooksOutput
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