pub enum DkimResult {
None,
Pass,
Fail,
Policy,
Neutral,
Temperror,
Permerror,
}Expand description
DKIM verification result (DKIMResultType), per RFC 5451.
Variants§
None
No DKIM signature was found.
Pass
The DKIM signature verified successfully.
Fail
The DKIM signature failed verification.
Policy
The DKIM signature was rejected for policy reasons.
Neutral
The DKIM verification result was neutral.
Temperror
A transient error occurred during DKIM verification.
Permerror
A permanent error occurred during DKIM verification.
Trait Implementations§
Source§impl Clone for DkimResult
impl Clone for DkimResult
Source§fn clone(&self) -> DkimResult
fn clone(&self) -> DkimResult
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 DkimResult
impl Debug for DkimResult
Source§impl<'de> Deserialize<'de> for DkimResult
impl<'de> Deserialize<'de> for DkimResult
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 Display for DkimResult
impl Display for DkimResult
Source§impl Hash for DkimResult
impl Hash for DkimResult
Source§impl PartialEq for DkimResult
impl PartialEq for DkimResult
impl Copy for DkimResult
impl Eq for DkimResult
impl StructuralPartialEq for DkimResult
Auto Trait Implementations§
impl Freeze for DkimResult
impl RefUnwindSafe for DkimResult
impl Send for DkimResult
impl Sync for DkimResult
impl Unpin for DkimResult
impl UnsafeUnpin for DkimResult
impl UnwindSafe for DkimResult
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