pub struct DkimAuthResult {
pub domain: String,
pub selector: Option<String>,
pub result: DkimResult,
pub human_result: Option<String>,
}Expand description
Result of evaluating a single DKIM signature (DKIMAuthResultType).
Fields§
§domain: StringThe d= domain from the DKIM signature.
selector: Option<String>The s= selector from the DKIM signature.
result: DkimResultThe DKIM verification result.
human_result: Option<String>A human-readable result string.
Trait Implementations§
Source§impl Clone for DkimAuthResult
impl Clone for DkimAuthResult
Source§fn clone(&self) -> DkimAuthResult
fn clone(&self) -> DkimAuthResult
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 DkimAuthResult
impl Debug for DkimAuthResult
Source§impl<'de> Deserialize<'de> for DkimAuthResult
impl<'de> Deserialize<'de> for DkimAuthResult
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 DkimAuthResult
impl PartialEq for DkimAuthResult
impl StructuralPartialEq for DkimAuthResult
Auto Trait Implementations§
impl Freeze for DkimAuthResult
impl RefUnwindSafe for DkimAuthResult
impl Send for DkimAuthResult
impl Sync for DkimAuthResult
impl Unpin for DkimAuthResult
impl UnsafeUnpin for DkimAuthResult
impl UnwindSafe for DkimAuthResult
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