pub struct AuthenticationResults {
pub spf: Option<AuthResult>,
pub dkim: Option<AuthResult>,
pub dmarc: Option<AuthResult>,
}Expand description
Email authentication results
Fields§
§spf: Option<AuthResult>SPF result
dkim: Option<AuthResult>DKIM result
dmarc: Option<AuthResult>DMARC result
Trait Implementations§
Source§impl Clone for AuthenticationResults
impl Clone for AuthenticationResults
Source§fn clone(&self) -> AuthenticationResults
fn clone(&self) -> AuthenticationResults
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 AuthenticationResults
impl Debug for AuthenticationResults
Source§impl Default for AuthenticationResults
impl Default for AuthenticationResults
Source§fn default() -> AuthenticationResults
fn default() -> AuthenticationResults
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthenticationResults
impl<'de> Deserialize<'de> for AuthenticationResults
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 AuthenticationResults
impl RefUnwindSafe for AuthenticationResults
impl Send for AuthenticationResults
impl Sync for AuthenticationResults
impl Unpin for AuthenticationResults
impl UnwindSafe for AuthenticationResults
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