pub enum RdapClientError {
InvalidQueryValue,
AmbiquousQueryType,
Response(RdapResponseError),
Client(Error),
ParsingError(Box<ParsingErrorInfo>),
Json(Error),
Poison,
BootstrapUnavailable,
BootstrapError(BootstrapRegistryError),
IanaResponse(IanaResponseError),
IoError(Error),
DomainNameError(DomainNameError),
}Expand description
Error returned by RDAP client functions and methods.
Variants§
InvalidQueryValue
AmbiquousQueryType
Response(RdapResponseError)
Client(Error)
ParsingError(Box<ParsingErrorInfo>)
Json(Error)
Poison
BootstrapError(BootstrapRegistryError)
IanaResponse(IanaResponseError)
IoError(Error)
DomainNameError(DomainNameError)
Trait Implementations§
Source§impl Debug for RdapClientError
impl Debug for RdapClientError
Source§impl Display for RdapClientError
impl Display for RdapClientError
Source§impl Error for RdapClientError
impl Error for RdapClientError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<BootstrapRegistryError> for RdapClientError
impl From<BootstrapRegistryError> for RdapClientError
Source§fn from(source: BootstrapRegistryError) -> Self
fn from(source: BootstrapRegistryError) -> Self
Converts to this type from the input type.
Source§impl From<DomainNameError> for RdapClientError
impl From<DomainNameError> for RdapClientError
Source§fn from(source: DomainNameError) -> Self
fn from(source: DomainNameError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for RdapClientError
impl From<Error> for RdapClientError
Source§impl From<Error> for RdapClientError
impl From<Error> for RdapClientError
Source§impl From<Error> for RdapClientError
impl From<Error> for RdapClientError
Source§impl From<IanaResponseError> for RdapClientError
impl From<IanaResponseError> for RdapClientError
Source§fn from(source: IanaResponseError) -> Self
fn from(source: IanaResponseError) -> Self
Converts to this type from the input type.
Source§impl<T> From<PoisonError<T>> for RdapClientError
impl<T> From<PoisonError<T>> for RdapClientError
Source§fn from(_err: PoisonError<T>) -> Self
fn from(_err: PoisonError<T>) -> Self
Converts to this type from the input type.
Source§impl From<RdapResponseError> for RdapClientError
impl From<RdapResponseError> for RdapClientError
Source§fn from(source: RdapResponseError) -> Self
fn from(source: RdapResponseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RdapClientError
impl !RefUnwindSafe for RdapClientError
impl Send for RdapClientError
impl Sync for RdapClientError
impl Unpin for RdapClientError
impl !UnwindSafe for RdapClientError
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> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
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.
Source§impl<T> StringUtil for Twhere
T: ToString,
impl<T> StringUtil for Twhere
T: ToString,
Source§fn replace_md_chars(self) -> String
fn replace_md_chars(self) -> String
Replaces and filters markdown characters.
fn to_em(self, options: &MdOptions) -> String
fn to_bold(self, options: &MdOptions) -> String
fn to_strikethrough(self, _options: &MdOptions) -> String
fn to_inline(self, _options: &MdOptions) -> String
fn to_header(self, level: usize, options: &MdOptions) -> String
fn to_right(self, width: usize, options: &MdOptions) -> String
fn to_right_em(self, width: usize, options: &MdOptions) -> String
fn to_right_bold(self, width: usize, options: &MdOptions) -> String
fn to_left(self, width: usize, options: &MdOptions) -> String
fn to_left_em(self, width: usize, options: &MdOptions) -> String
fn to_left_bold(self, width: usize, options: &MdOptions) -> String
fn to_center(self, width: usize, options: &MdOptions) -> String
fn to_center_em(self, width: usize, options: &MdOptions) -> String
fn to_center_bold(self, width: usize, options: &MdOptions) -> String
fn to_title_case(self) -> String
fn to_words_title_case(self) -> String
fn format_date_time(self, _params: MdParams<'_>) -> Option<String>
fn to_cap_acronyms(self) -> String
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.