pub enum Dkim2Error {
Show 28 variants
InstanceMissing(u32),
InstanceSyntax(u32),
InstanceTagMissing {
m: u32,
tag: &'static str,
},
InstanceNotSigned(u32),
InstanceAboveSignature(u32),
SignatureMissing(u32),
SignatureSyntax(u32),
SignatureTagMissing {
i: u32,
tag: &'static str,
},
SignatureTagUnexpected {
i: u32,
tag: &'static str,
},
SequenceGap,
SequenceOverflow,
SignatureExpired(u32),
MailFromMismatch(u32),
RcptToMismatch(u32),
MailFromDomainMismatch(u32),
NextDomainMismatch(u32),
PublicKeyFetch(u32),
PublicKeyMissing(u32),
PublicKeyMultiple(u32),
PublicKeySyntax(u32),
PublicKeyAlgorithmMismatch(u32),
PublicKeyRevoked(u32),
IncorrectSignature(u32),
NoValidAlgorithm(u32),
HeaderHashMismatch(u32),
BodyHashMismatch(u32),
Modified,
Exploded,
}Variants§
InstanceMissing(u32)
InstanceSyntax(u32)
InstanceTagMissing
InstanceNotSigned(u32)
InstanceAboveSignature(u32)
SignatureMissing(u32)
SignatureSyntax(u32)
SignatureTagMissing
SignatureTagUnexpected
SequenceGap
SequenceOverflow
SignatureExpired(u32)
MailFromMismatch(u32)
RcptToMismatch(u32)
MailFromDomainMismatch(u32)
NextDomainMismatch(u32)
PublicKeyFetch(u32)
PublicKeyMissing(u32)
PublicKeyMultiple(u32)
PublicKeySyntax(u32)
PublicKeyAlgorithmMismatch(u32)
PublicKeyRevoked(u32)
IncorrectSignature(u32)
NoValidAlgorithm(u32)
HeaderHashMismatch(u32)
BodyHashMismatch(u32)
Modified
Exploded
Trait Implementations§
Source§impl Clone for Dkim2Error
impl Clone for Dkim2Error
Source§fn clone(&self) -> Dkim2Error
fn clone(&self) -> Dkim2Error
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Dkim2Error
impl Debug for Dkim2Error
Source§impl Display for Dkim2Error
impl Display for Dkim2Error
impl Eq for Dkim2Error
Source§impl PartialEq for Dkim2Error
impl PartialEq for Dkim2Error
Source§fn eq(&self, other: &Dkim2Error) -> bool
fn eq(&self, other: &Dkim2Error) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Dkim2Error
Auto Trait Implementations§
impl Freeze for Dkim2Error
impl RefUnwindSafe for Dkim2Error
impl Send for Dkim2Error
impl Sync for Dkim2Error
impl Unpin for Dkim2Error
impl UnsafeUnpin for Dkim2Error
impl UnwindSafe for Dkim2Error
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more