pub struct PolicyEvaluated {
pub disposition: Disposition,
pub dkim: DmarcResult,
pub spf: DmarcResult,
pub reasons: Vec<PolicyOverrideReason>,
}Expand description
Results of applying DMARC to the messages in this row (PolicyEvaluatedType).
Fields§
§disposition: DispositionThe final policy action applied.
dkim: DmarcResultWhether the message passed DKIM alignment.
spf: DmarcResultWhether the message passed SPF alignment.
reasons: Vec<PolicyOverrideReason>Reasons that may have altered the evaluated disposition.
Trait Implementations§
Source§impl Clone for PolicyEvaluated
impl Clone for PolicyEvaluated
Source§fn clone(&self) -> PolicyEvaluated
fn clone(&self) -> PolicyEvaluated
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 PolicyEvaluated
impl Debug for PolicyEvaluated
Source§impl<'de> Deserialize<'de> for PolicyEvaluated
impl<'de> Deserialize<'de> for PolicyEvaluated
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 PolicyEvaluated
impl PartialEq for PolicyEvaluated
impl StructuralPartialEq for PolicyEvaluated
Auto Trait Implementations§
impl Freeze for PolicyEvaluated
impl RefUnwindSafe for PolicyEvaluated
impl Send for PolicyEvaluated
impl Sync for PolicyEvaluated
impl Unpin for PolicyEvaluated
impl UnsafeUnpin for PolicyEvaluated
impl UnwindSafe for PolicyEvaluated
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