Struct mailchimp_api::types::InterestGroupings
source · pub struct InterestGroupings {
pub links: Vec<Links>,
pub categories: Vec<Categories>,
pub list_id: String,
pub total_items: i64,
}
Expand description
Information about this list’s interest categories.
Fields
links: Vec<Links>
Information about this list’s interest categories.
categories: Vec<Categories>
Information about this list’s interest categories.
list_id: String
Information about this list’s interest categories.
total_items: i64
Information about this list’s interest categories.
Trait Implementations
sourceimpl Clone for InterestGroupings
impl Clone for InterestGroupings
sourcefn clone(&self) -> InterestGroupings
fn clone(&self) -> InterestGroupings
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 InterestGroupings
impl Debug for InterestGroupings
sourceimpl<'de> Deserialize<'de> for InterestGroupings
impl<'de> Deserialize<'de> for InterestGroupings
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 InterestGroupings
impl JsonSchema for InterestGroupings
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<InterestGroupings> for InterestGroupings
impl PartialEq<InterestGroupings> for InterestGroupings
sourcefn eq(&self, other: &InterestGroupings) -> bool
fn eq(&self, other: &InterestGroupings) -> bool
sourceimpl Serialize for InterestGroupings
impl Serialize for InterestGroupings
impl StructuralPartialEq for InterestGroupings
Auto Trait Implementations
impl RefUnwindSafe for InterestGroupings
impl Send for InterestGroupings
impl Sync for InterestGroupings
impl Unpin for InterestGroupings
impl UnwindSafe for InterestGroupings
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