pub enum ZBValidateSubStatus {
Show 32 variants
None,
AntispamSystem,
Greylisted,
MailServerTemporaryError,
ForcibleDisconnect,
MailServerDidNotRespond,
TimeoutExceeded,
FailedSmtpConnection,
MailboxQuotaExceeded,
ExceptionOccurred,
PossibleTrap,
RoleBased,
GlobalSuppression,
MailboxNotFound,
NoDnsEntries,
FailedSyntaxCheck,
PossibleTypo,
UnroutableIpAddress,
LeadingPeriodRemoved,
DoesNotAcceptMail,
AliasAddress,
RoleBasedCatchAll,
Disposable,
Toxic,
Alternate,
MxForward,
Blocked,
Allowed,
AcceptAll,
RoleBasedAcceptAll,
Gold,
UnknownValue(String),
}Expand description
Validation sub-status values returned by the API (validate, validate_batch).
Variants§
None
AntispamSystem
Greylisted
MailServerTemporaryError
ForcibleDisconnect
MailServerDidNotRespond
TimeoutExceeded
FailedSmtpConnection
MailboxQuotaExceeded
ExceptionOccurred
PossibleTrap
RoleBased
GlobalSuppression
MailboxNotFound
NoDnsEntries
FailedSyntaxCheck
PossibleTypo
UnroutableIpAddress
LeadingPeriodRemoved
DoesNotAcceptMail
AliasAddress
RoleBasedCatchAll
Disposable
Toxic
Alternate
MxForward
Blocked
Allowed
AcceptAll
RoleBasedAcceptAll
Gold
UnknownValue(String)
Unknown or future API value (backward compatible)
Trait Implementations§
Source§impl Clone for ZBValidateSubStatus
impl Clone for ZBValidateSubStatus
Source§fn clone(&self) -> ZBValidateSubStatus
fn clone(&self) -> ZBValidateSubStatus
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 ZBValidateSubStatus
impl Debug for ZBValidateSubStatus
Source§impl FromStr for ZBValidateSubStatus
impl FromStr for ZBValidateSubStatus
Source§impl PartialEq for ZBValidateSubStatus
impl PartialEq for ZBValidateSubStatus
impl Eq for ZBValidateSubStatus
impl StructuralPartialEq for ZBValidateSubStatus
Auto Trait Implementations§
impl Freeze for ZBValidateSubStatus
impl RefUnwindSafe for ZBValidateSubStatus
impl Send for ZBValidateSubStatus
impl Sync for ZBValidateSubStatus
impl Unpin for ZBValidateSubStatus
impl UnsafeUnpin for ZBValidateSubStatus
impl UnwindSafe for ZBValidateSubStatus
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§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.