Enum mail_auth::DmarcResult
source · pub enum DmarcResult {
Pass,
Fail(Error),
TempError(Error),
PermError(Error),
None,
}Variants§
Trait Implementations§
source§impl AsAuthResult for DmarcResult
impl AsAuthResult for DmarcResult
fn as_auth_result(&self, header: &mut String)
source§impl Clone for DmarcResult
impl Clone for DmarcResult
source§fn clone(&self) -> DmarcResult
fn clone(&self) -> DmarcResult
Returns a copy 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 DmarcResult
impl Debug for DmarcResult
source§impl Display for DmarcResult
impl Display for DmarcResult
source§impl From<&DmarcResult> for DmarcResult
impl From<&DmarcResult> for DmarcResult
source§fn from(result: &DmarcResult) -> Self
fn from(result: &DmarcResult) -> Self
Converts to this type from the input type.
source§impl From<Error> for DmarcResult
impl From<Error> for DmarcResult
source§impl PartialEq for DmarcResult
impl PartialEq for DmarcResult
source§fn eq(&self, other: &DmarcResult) -> bool
fn eq(&self, other: &DmarcResult) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for DmarcResult
impl StructuralPartialEq for DmarcResult
Auto Trait Implementations§
impl Freeze for DmarcResult
impl RefUnwindSafe for DmarcResult
impl Send for DmarcResult
impl Sync for DmarcResult
impl Unpin for DmarcResult
impl UnwindSafe for DmarcResult
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