Struct mailchimp_api::types::BatchWebhooks
source · pub struct BatchWebhooks {
pub links: Vec<Links>,
pub total_items: i64,
pub webhooks: Vec<Webhooks>,
}
Expand description
Manage webhooks for batch requests.
Fields
links: Vec<Links>
Manage webhooks for batch requests.
total_items: i64
Manage webhooks for batch requests.
webhooks: Vec<Webhooks>
Manage webhooks for batch requests.
Trait Implementations
sourceimpl Clone for BatchWebhooks
impl Clone for BatchWebhooks
sourcefn clone(&self) -> BatchWebhooks
fn clone(&self) -> BatchWebhooks
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 BatchWebhooks
impl Debug for BatchWebhooks
sourceimpl<'de> Deserialize<'de> for BatchWebhooks
impl<'de> Deserialize<'de> for BatchWebhooks
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 BatchWebhooks
impl JsonSchema for BatchWebhooks
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<BatchWebhooks> for BatchWebhooks
impl PartialEq<BatchWebhooks> for BatchWebhooks
sourcefn eq(&self, other: &BatchWebhooks) -> bool
fn eq(&self, other: &BatchWebhooks) -> bool
sourceimpl Serialize for BatchWebhooks
impl Serialize for BatchWebhooks
impl StructuralPartialEq for BatchWebhooks
Auto Trait Implementations
impl RefUnwindSafe for BatchWebhooks
impl Send for BatchWebhooks
impl Sync for BatchWebhooks
impl Unpin for BatchWebhooks
impl UnwindSafe for BatchWebhooks
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