pub struct AuthenticationResult {
pub spf: SpfResult,
pub dkim: Vec<DkimResult>,
pub dmarc: DmarcResult,
pub from_domain: String,
pub spf_domain: String,
}Expand description
Combined authentication result from SPF, DKIM, and DMARC.
Fields§
§spf: SpfResult§dkim: Vec<DkimResult>§dmarc: DmarcResult§from_domain: String§spf_domain: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for AuthenticationResult
impl RefUnwindSafe for AuthenticationResult
impl Send for AuthenticationResult
impl Sync for AuthenticationResult
impl Unpin for AuthenticationResult
impl UnwindSafe for AuthenticationResult
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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