pub struct EmailIdentity {Show 13 fields
pub identity_name: String,
pub identity_type: String,
pub verified: bool,
pub created_at: DateTime<Utc>,
pub dkim_signing_enabled: bool,
pub dkim_signing_attributes_origin: String,
pub dkim_domain_signing_private_key: Option<String>,
pub dkim_domain_signing_selector: Option<String>,
pub dkim_next_signing_key_length: Option<String>,
pub email_forwarding_enabled: bool,
pub mail_from_domain: Option<String>,
pub mail_from_behavior_on_mx_failure: String,
pub configuration_set_name: Option<String>,
}Fields§
§identity_name: String§identity_type: String§verified: bool§created_at: DateTime<Utc>§dkim_signing_enabled: bool§dkim_signing_attributes_origin: String§dkim_domain_signing_private_key: Option<String>§dkim_domain_signing_selector: Option<String>§dkim_next_signing_key_length: Option<String>§email_forwarding_enabled: bool§mail_from_domain: Option<String>§mail_from_behavior_on_mx_failure: String§configuration_set_name: Option<String>Trait Implementations§
Source§impl Clone for EmailIdentity
impl Clone for EmailIdentity
Source§fn clone(&self) -> EmailIdentity
fn clone(&self) -> EmailIdentity
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 EmailIdentity
impl Debug for EmailIdentity
Auto Trait Implementations§
impl Freeze for EmailIdentity
impl RefUnwindSafe for EmailIdentity
impl Send for EmailIdentity
impl Sync for EmailIdentity
impl Unpin for EmailIdentity
impl UnsafeUnpin for EmailIdentity
impl UnwindSafe for EmailIdentity
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