Struct mailchimp_api::types::GroupA
source · pub struct GroupA {
pub click_percentage_a: f64,
pub total_clicks_a: i64,
pub unique_click_percentage_a: f64,
pub unique_clicks_a: i64,
}
Expand description
Stats for Group A.
Fields
click_percentage_a: f64
Stats for Group A.
total_clicks_a: i64
Stats for Group A.
unique_click_percentage_a: f64
Stats for Group A.
unique_clicks_a: i64
Stats for Group A.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for GroupA
impl<'de> Deserialize<'de> for GroupA
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 GroupA
impl JsonSchema for GroupA
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 moreimpl StructuralPartialEq for GroupA
Auto Trait Implementations
impl RefUnwindSafe for GroupA
impl Send for GroupA
impl Sync for GroupA
impl Unpin for GroupA
impl UnwindSafe for GroupA
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