Struct mailchimp_api::types::VariateSettings
source · pub struct VariateSettings {
pub from_names: Vec<String>,
pub reply_to_addresses: Vec<String>,
pub send_times: Vec<Option<DateTime<Utc>>>,
pub subject_lines: Vec<String>,
pub test_size: i64,
pub wait_time: i64,
pub winner_criteria: WinnerCriteria,
}Expand description
The settings specific to A/B test campaigns.
Fields
from_names: Vec<String>The settings specific to A/B test campaigns.
reply_to_addresses: Vec<String>The settings specific to A/B test campaigns.
send_times: Vec<Option<DateTime<Utc>>>The settings specific to A/B test campaigns.
subject_lines: Vec<String>The settings specific to A/B test campaigns.
test_size: i64The settings specific to A/B test campaigns.
wait_time: i64The settings specific to A/B test campaigns.
winner_criteria: WinnerCriteriaThe combination that performs the best. This may be determined automatically by click rate, open rate, or total revenue – or you may choose manually based on the reporting data you find the most valuable. For Multivariate Campaigns testing send_time, winner_criteria is ignored. For Multivariate Campaigns with ‘manual’ as the winner_criteria, the winner must be chosen in the Mailchimp web application.
Trait Implementations
sourceimpl Clone for VariateSettings
impl Clone for VariateSettings
sourcefn clone(&self) -> VariateSettings
fn clone(&self) -> VariateSettings
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 VariateSettings
impl Debug for VariateSettings
sourceimpl<'de> Deserialize<'de> for VariateSettings
impl<'de> Deserialize<'de> for VariateSettings
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 VariateSettings
impl JsonSchema for VariateSettings
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<VariateSettings> for VariateSettings
impl PartialEq<VariateSettings> for VariateSettings
sourcefn eq(&self, other: &VariateSettings) -> bool
fn eq(&self, other: &VariateSettings) -> bool
sourceimpl Serialize for VariateSettings
impl Serialize for VariateSettings
impl StructuralPartialEq for VariateSettings
Auto Trait Implementations
impl RefUnwindSafe for VariateSettings
impl Send for VariateSettings
impl Sync for VariateSettings
impl Unpin for VariateSettings
impl UnwindSafe for VariateSettings
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