pub enum RunOutcome {
Show 16 variants
Tested,
NetworkError,
HttpProtocolError,
HttpConnectError,
HttpRedirectError,
HttpTimeoutError,
HttpNon200Error,
HttpTooManyRequestsError,
HttpNotFoundError,
HttpBadRequestError,
HttpUnauthorizedError,
HttpForbiddenError,
JsonError,
RdapDataError,
InternalError,
Skipped,
}Variants§
Tested
NetworkError
HttpProtocolError
HttpConnectError
HttpRedirectError
HttpTimeoutError
HttpNon200Error
HttpTooManyRequestsError
HttpNotFoundError
HttpBadRequestError
HttpForbiddenError
JsonError
RdapDataError
InternalError
Skipped
Implementations§
Trait Implementations§
Source§impl Debug for RunOutcome
impl Debug for RunOutcome
Source§impl Display for RunOutcome
impl Display for RunOutcome
Auto Trait Implementations§
impl Freeze for RunOutcome
impl RefUnwindSafe for RunOutcome
impl Send for RunOutcome
impl Sync for RunOutcome
impl Unpin for RunOutcome
impl UnwindSafe for RunOutcome
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> 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> StringCheck for Twhere
T: ToString,
impl<T> StringCheck for Twhere
T: ToString,
Source§fn is_whitespace_or_empty(&self) -> bool
fn is_whitespace_or_empty(&self) -> bool
Tests if the string is empty, including for if the string only has whitespace.
Source§fn is_ldh_string(&self) -> bool
fn is_ldh_string(&self) -> bool
Tests if the string contains only letters, digits, or hyphens and is not empty.
Source§fn is_ldh_domain_name(&self) -> bool
fn is_ldh_domain_name(&self) -> bool
Tests if a string is an LDH doamin name. This is not to be confused with StringCheck::is_ldh_string,
which checks individual domain labels.
Source§fn is_unicode_domain_name(&self) -> bool
fn is_unicode_domain_name(&self) -> bool
Tests if a string is a Unicode domain name.