pub struct SpfAuthResult {
pub domain: String,
pub scope: Option<SpfDomainScope>,
pub result: SpfResult,
}Expand description
Result of an SPF check (SPFAuthResultType).
Fields§
§domain: StringThe domain used for SPF evaluation.
scope: Option<SpfDomainScope>The identity that was checked (HELO or MAIL FROM).
result: SpfResultThe SPF evaluation result.
Trait Implementations§
Source§impl Clone for SpfAuthResult
impl Clone for SpfAuthResult
Source§fn clone(&self) -> SpfAuthResult
fn clone(&self) -> SpfAuthResult
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 SpfAuthResult
impl Debug for SpfAuthResult
Source§impl<'de> Deserialize<'de> for SpfAuthResult
impl<'de> Deserialize<'de> for SpfAuthResult
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 SpfAuthResult
impl PartialEq for SpfAuthResult
impl StructuralPartialEq for SpfAuthResult
Auto Trait Implementations§
impl Freeze for SpfAuthResult
impl RefUnwindSafe for SpfAuthResult
impl Send for SpfAuthResult
impl Sync for SpfAuthResult
impl Unpin for SpfAuthResult
impl UnsafeUnpin for SpfAuthResult
impl UnwindSafe for SpfAuthResult
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