pub enum SpfResult {
Pass,
Fail,
SoftFail,
Neutral,
None,
TempError,
PermError,
}Expand description
Possible SPF result labels.
Variants§
Pass
SPF pass.
Fail
SPF fail.
SoftFail
SPF soft fail.
Neutral
SPF neutral.
None
No SPF policy was available.
TempError
Temporary error.
PermError
Permanent error.
Implementations§
Trait Implementations§
Source§impl Ord for SpfResult
impl Ord for SpfResult
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for SpfResult
impl PartialOrd for SpfResult
impl Copy for SpfResult
impl Eq for SpfResult
impl StructuralPartialEq for SpfResult
Auto Trait Implementations§
impl Freeze for SpfResult
impl RefUnwindSafe for SpfResult
impl Send for SpfResult
impl Sync for SpfResult
impl Unpin for SpfResult
impl UnsafeUnpin for SpfResult
impl UnwindSafe for SpfResult
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