pub struct DomainChanges { /* private fields */ }Expand description
List of changes to apply to a Domain.
Implementations§
Source§impl DomainChanges
impl DomainChanges
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new DomainChanges.
Sourcepub const fn with_click_tracking(self, enable: bool) -> Self
pub const fn with_click_tracking(self, enable: bool) -> Self
Toggles the click tracking to enable.
Sourcepub const fn with_open_tracking(self, enable: bool) -> Self
pub const fn with_open_tracking(self, enable: bool) -> Self
Toggles the open tracing to enable.
pub fn with_tracking_subdomain( self, tracking_subdomain: impl Into<String>, ) -> Self
Trait Implementations§
Source§impl Clone for DomainChanges
impl Clone for DomainChanges
Source§fn clone(&self) -> DomainChanges
fn clone(&self) -> DomainChanges
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 DomainChanges
impl Debug for DomainChanges
Source§impl Default for DomainChanges
impl Default for DomainChanges
Source§fn default() -> DomainChanges
fn default() -> DomainChanges
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DomainChanges
impl RefUnwindSafe for DomainChanges
impl Send for DomainChanges
impl Sync for DomainChanges
impl Unpin for DomainChanges
impl UnsafeUnpin for DomainChanges
impl UnwindSafe for DomainChanges
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