Struct mailchimp_api::types::AutomationDelay
source · pub struct AutomationDelay {
pub action: DelayAction,
pub amount: i64,
pub direction: Option<DelayDirection>,
pub type_: Option<DelayType>,
}
Expand description
The delay settings for an automation email.
Fields
action: DelayAction
The action that triggers the delay of an automation emails.
amount: i64
The delay settings for an automation email.
direction: Option<DelayDirection>
The delay settings for an automation email.
type_: Option<DelayType>
The delay settings for an automation email.
Trait Implementations
sourceimpl Clone for AutomationDelay
impl Clone for AutomationDelay
sourcefn clone(&self) -> AutomationDelay
fn clone(&self) -> AutomationDelay
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 AutomationDelay
impl Debug for AutomationDelay
sourceimpl<'de> Deserialize<'de> for AutomationDelay
impl<'de> Deserialize<'de> for AutomationDelay
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 AutomationDelay
impl JsonSchema for AutomationDelay
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<AutomationDelay> for AutomationDelay
impl PartialEq<AutomationDelay> for AutomationDelay
sourcefn eq(&self, other: &AutomationDelay) -> bool
fn eq(&self, other: &AutomationDelay) -> bool
sourceimpl Serialize for AutomationDelay
impl Serialize for AutomationDelay
impl StructuralPartialEq for AutomationDelay
Auto Trait Implementations
impl RefUnwindSafe for AutomationDelay
impl Send for AutomationDelay
impl Sync for AutomationDelay
impl Unpin for AutomationDelay
impl UnwindSafe for AutomationDelay
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