pub struct AuthResults {
pub dkim: Vec<DkimAuthResult>,
pub spf: Vec<SpfAuthResult>,
}Expand description
Authentication results for a message (AuthResultType).
Fields§
§dkim: Vec<DkimAuthResult>DKIM signature evaluation results (zero or more).
spf: Vec<SpfAuthResult>SPF evaluation results (one or more per RFC 7489).
Trait Implementations§
Source§impl Clone for AuthResults
impl Clone for AuthResults
Source§fn clone(&self) -> AuthResults
fn clone(&self) -> AuthResults
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 AuthResults
impl Debug for AuthResults
Source§impl<'de> Deserialize<'de> for AuthResults
impl<'de> Deserialize<'de> for AuthResults
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 PartialEq for AuthResults
impl PartialEq for AuthResults
impl StructuralPartialEq for AuthResults
Auto Trait Implementations§
impl Freeze for AuthResults
impl RefUnwindSafe for AuthResults
impl Send for AuthResults
impl Sync for AuthResults
impl Unpin for AuthResults
impl UnsafeUnpin for AuthResults
impl UnwindSafe for AuthResults
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