pub struct AccountSettings {
pub sending_enabled: bool,
pub dedicated_ip_auto_warmup_enabled: bool,
pub suppressed_reasons: Vec<String>,
pub vdm_attributes: Option<Value>,
pub details: Option<AccountDetails>,
}Fields§
§sending_enabled: bool§dedicated_ip_auto_warmup_enabled: bool§suppressed_reasons: Vec<String>§vdm_attributes: Option<Value>§details: Option<AccountDetails>Trait Implementations§
Source§impl Clone for AccountSettings
impl Clone for AccountSettings
Source§fn clone(&self) -> AccountSettings
fn clone(&self) -> AccountSettings
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AccountSettings
impl Debug for AccountSettings
Source§impl Default for AccountSettings
impl Default for AccountSettings
Source§fn default() -> AccountSettings
fn default() -> AccountSettings
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AccountSettings
impl RefUnwindSafe for AccountSettings
impl Send for AccountSettings
impl Sync for AccountSettings
impl Unpin for AccountSettings
impl UnsafeUnpin for AccountSettings
impl UnwindSafe for AccountSettings
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more