pub struct IdentityDkimAttributes {
pub dkim_enabled: bool,
pub dkim_tokens: Vec<String>,
pub dkim_verification_status: VerificationStatus,
}Expand description
SES IdentityDkimAttributes.
Fields§
§dkim_enabled: bool§dkim_tokens: Vec<String>§dkim_verification_status: VerificationStatusTrait Implementations§
Source§impl Clone for IdentityDkimAttributes
impl Clone for IdentityDkimAttributes
Source§fn clone(&self) -> IdentityDkimAttributes
fn clone(&self) -> IdentityDkimAttributes
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 IdentityDkimAttributes
impl Debug for IdentityDkimAttributes
Source§impl Default for IdentityDkimAttributes
impl Default for IdentityDkimAttributes
Source§fn default() -> IdentityDkimAttributes
fn default() -> IdentityDkimAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IdentityDkimAttributes
impl<'de> Deserialize<'de> for IdentityDkimAttributes
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
Auto Trait Implementations§
impl Freeze for IdentityDkimAttributes
impl RefUnwindSafe for IdentityDkimAttributes
impl Send for IdentityDkimAttributes
impl Sync for IdentityDkimAttributes
impl Unpin for IdentityDkimAttributes
impl UnsafeUnpin for IdentityDkimAttributes
impl UnwindSafe for IdentityDkimAttributes
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