pub struct EmailForwarding {
pub alias: Option<String>,
pub target_email_address: Option<String>,
}Expand description
Email forwarding configuration.
This type is not used in any activity, and only used as part of another schema.
Fields§
§alias: Option<String>An alias recipient email that forwards emails to the target_email_address. For example, admin@example.com or *@example.com (wildcard alias forwards all the emails under the registered domain).
target_email_address: Option<String>Target email that receives emails sent to the alias.
Trait Implementations§
Source§impl Clone for EmailForwarding
impl Clone for EmailForwarding
Source§fn clone(&self) -> EmailForwarding
fn clone(&self) -> EmailForwarding
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 EmailForwarding
impl Debug for EmailForwarding
Source§impl Default for EmailForwarding
impl Default for EmailForwarding
Source§fn default() -> EmailForwarding
fn default() -> EmailForwarding
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EmailForwarding
impl<'de> Deserialize<'de> for EmailForwarding
Source§fn 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
Source§impl Serialize for EmailForwarding
impl Serialize for EmailForwarding
impl Part for EmailForwarding
Auto Trait Implementations§
impl Freeze for EmailForwarding
impl RefUnwindSafe for EmailForwarding
impl Send for EmailForwarding
impl Sync for EmailForwarding
impl Unpin for EmailForwarding
impl UnwindSafe for EmailForwarding
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