Struct mailchimp_api::types::TriggerSettings
source · pub struct TriggerSettings {
pub runtime: Option<Runtime>,
pub workflow_emails_count: i64,
pub workflow_title: String,
pub workflow_type: WorkflowType,
}
Expand description
Available triggers for Automation workflows.
Fields
runtime: Option<Runtime>
Available triggers for Automation workflows.
workflow_emails_count: i64
Available triggers for Automation workflows.
workflow_title: String
Available triggers for Automation workflows.
workflow_type: WorkflowType
The type of Automation workflow.
Trait Implementations
sourceimpl Clone for TriggerSettings
impl Clone for TriggerSettings
sourcefn clone(&self) -> TriggerSettings
fn clone(&self) -> TriggerSettings
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 TriggerSettings
impl Debug for TriggerSettings
sourceimpl<'de> Deserialize<'de> for TriggerSettings
impl<'de> Deserialize<'de> for TriggerSettings
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 TriggerSettings
impl JsonSchema for TriggerSettings
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<TriggerSettings> for TriggerSettings
impl PartialEq<TriggerSettings> for TriggerSettings
sourcefn eq(&self, other: &TriggerSettings) -> bool
fn eq(&self, other: &TriggerSettings) -> bool
sourceimpl Serialize for TriggerSettings
impl Serialize for TriggerSettings
impl StructuralPartialEq for TriggerSettings
Auto Trait Implementations
impl RefUnwindSafe for TriggerSettings
impl Send for TriggerSettings
impl Sync for TriggerSettings
impl Unpin for TriggerSettings
impl UnwindSafe for TriggerSettings
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