pub struct UpdateDomain {
pub feedback_enabled: Option<bool>,
pub subdomains_enabled: Option<bool>,
}Expand description
Request body for [Client::update_domain]. Fields left None stay unchanged.
Fields§
§feedback_enabled: Option<bool>Enable or disable bounce/complaint feedback.
subdomains_enabled: Option<bool>Enable or disable subdomains for inbox use.
Trait Implementations§
Source§impl Clone for UpdateDomain
impl Clone for UpdateDomain
Source§fn clone(&self) -> UpdateDomain
fn clone(&self) -> UpdateDomain
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateDomain
impl Debug for UpdateDomain
Source§impl Default for UpdateDomain
impl Default for UpdateDomain
Source§fn default() -> UpdateDomain
fn default() -> UpdateDomain
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateDomain
impl RefUnwindSafe for UpdateDomain
impl Send for UpdateDomain
impl Sync for UpdateDomain
impl Unpin for UpdateDomain
impl UnsafeUnpin for UpdateDomain
impl UnwindSafe for UpdateDomain
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