pub struct ListWebhooksResult {
pub next_token: Option<String>,
pub webhooks: Vec<Webhook>,
}
Expand description
The result structure for the list webhooks request.
Fields§
§next_token: Option<String>
A pagination token. If non-null, the pagination token is returned in a result. Pass its value in another request to retrieve more entries.
webhooks: Vec<Webhook>
A list of webhooks.
Trait Implementations§
Source§impl Clone for ListWebhooksResult
impl Clone for ListWebhooksResult
Source§fn clone(&self) -> ListWebhooksResult
fn clone(&self) -> ListWebhooksResult
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 ListWebhooksResult
impl Debug for ListWebhooksResult
Source§impl Default for ListWebhooksResult
impl Default for ListWebhooksResult
Source§fn default() -> ListWebhooksResult
fn default() -> ListWebhooksResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListWebhooksResult
impl<'de> Deserialize<'de> for ListWebhooksResult
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 ListWebhooksResult
impl PartialEq for ListWebhooksResult
impl StructuralPartialEq for ListWebhooksResult
Auto Trait Implementations§
impl Freeze for ListWebhooksResult
impl RefUnwindSafe for ListWebhooksResult
impl Send for ListWebhooksResult
impl Sync for ListWebhooksResult
impl Unpin for ListWebhooksResult
impl UnwindSafe for ListWebhooksResult
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