pub struct WebhookEventTypesResponse {
pub event_types: Vec<WebhookEventType>,
pub extra: HashMap<String, Value>,
}Expand description
Response from
Client::list_webhook_event_types.
Fields§
§event_types: Vec<WebhookEventType>The event types the server can emit.
extra: HashMap<String, Value>Forward-compatible bucket.
Trait Implementations§
Source§impl Clone for WebhookEventTypesResponse
impl Clone for WebhookEventTypesResponse
Source§fn clone(&self) -> WebhookEventTypesResponse
fn clone(&self) -> WebhookEventTypesResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WebhookEventTypesResponse
impl Debug for WebhookEventTypesResponse
Source§impl Default for WebhookEventTypesResponse
impl Default for WebhookEventTypesResponse
Source§fn default() -> WebhookEventTypesResponse
fn default() -> WebhookEventTypesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookEventTypesResponse
impl<'de> Deserialize<'de> for WebhookEventTypesResponse
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 WebhookEventTypesResponse
impl PartialEq for WebhookEventTypesResponse
Source§fn eq(&self, other: &WebhookEventTypesResponse) -> bool
fn eq(&self, other: &WebhookEventTypesResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for WebhookEventTypesResponse
impl StructuralPartialEq for WebhookEventTypesResponse
Auto Trait Implementations§
impl Freeze for WebhookEventTypesResponse
impl RefUnwindSafe for WebhookEventTypesResponse
impl Send for WebhookEventTypesResponse
impl Sync for WebhookEventTypesResponse
impl Unpin for WebhookEventTypesResponse
impl UnsafeUnpin for WebhookEventTypesResponse
impl UnwindSafe for WebhookEventTypesResponse
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