Struct mailchimp_api::types::Settings
source · pub struct Settings {
pub authenticate: bool,
pub auto_footer: bool,
pub from_name: String,
pub inline_css: bool,
pub reply_to: String,
pub title: String,
pub to_name: String,
pub use_conversation: bool,
}
Expand description
The settings for the Automation workflow.
Fields
authenticate: bool
The settings for the Automation workflow.
The settings for the Automation workflow.
from_name: String
The settings for the Automation workflow.
inline_css: bool
The settings for the Automation workflow.
reply_to: String
The settings for the Automation workflow.
title: String
The settings for the Automation workflow.
to_name: String
The settings for the Automation workflow.
use_conversation: bool
The settings for the Automation workflow.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Settings
impl<'de> Deserialize<'de> for Settings
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 Settings
impl JsonSchema for Settings
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 Settings
Auto Trait Implementations
impl RefUnwindSafe for Settings
impl Send for Settings
impl Sync for Settings
impl Unpin for Settings
impl UnwindSafe for Settings
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