Struct mailchimp_api::types::ListWebhooks
source · pub struct ListWebhooks {
pub links: Vec<Links>,
pub events: Option<ListWebhooksEvents>,
pub id: String,
pub list_id: String,
pub sources: Option<ListWebhooksSources>,
pub url: String,
}
Expand description
Webhook configured for the given list.
Fields
links: Vec<Links>
Webhook configured for the given list.
events: Option<ListWebhooksEvents>
Webhook configured for the given list.
id: String
Webhook configured for the given list.
list_id: String
Webhook configured for the given list.
sources: Option<ListWebhooksSources>
Webhook configured for the given list.
url: String
Webhook configured for the given list.
Trait Implementations
sourceimpl Clone for ListWebhooks
impl Clone for ListWebhooks
sourcefn clone(&self) -> ListWebhooks
fn clone(&self) -> ListWebhooks
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ListWebhooks
impl Debug for ListWebhooks
sourceimpl<'de> Deserialize<'de> for ListWebhooks
impl<'de> Deserialize<'de> for ListWebhooks
sourcefn 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
sourceimpl JsonSchema for ListWebhooks
impl JsonSchema for ListWebhooks
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresourceimpl PartialEq<ListWebhooks> for ListWebhooks
impl PartialEq<ListWebhooks> for ListWebhooks
sourcefn eq(&self, other: &ListWebhooks) -> bool
fn eq(&self, other: &ListWebhooks) -> bool
sourceimpl Serialize for ListWebhooks
impl Serialize for ListWebhooks
impl StructuralPartialEq for ListWebhooks
Auto Trait Implementations
impl RefUnwindSafe for ListWebhooks
impl Send for ListWebhooks
impl Sync for ListWebhooks
impl Unpin for ListWebhooks
impl UnwindSafe for ListWebhooks
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more