pub trait IntoUrlParse {
type Ret;
// Required methods
fn into_url_parse(self, arg_1: impl Into<String>) -> Self::Ret;
fn into_url_parse_with<__F, __ARG_1>(self, f: __F) -> Self::Ret
where __F: FnOnce() -> __ARG_1,
__ARG_1: Into<String>;
}
Expand description
Extension trait for converting [http::uri::InvalidUri
] into MetaAddressStrategyParseError::UrlParse
with the given context.
Required Associated Types§
Required Methods§
Sourcefn into_url_parse(self, arg_1: impl Into<String>) -> Self::Ret
fn into_url_parse(self, arg_1: impl Into<String>) -> Self::Ret
Converts [http::uri::InvalidUri
] into MetaAddressStrategyParseError::UrlParse
with the given context.
Sourcefn into_url_parse_with<__F, __ARG_1>(self, f: __F) -> Self::Ret
fn into_url_parse_with<__F, __ARG_1>(self, f: __F) -> Self::Ret
Converts [http::uri::InvalidUri
] into MetaAddressStrategyParseError::UrlParse
with the context returned by the given function.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Source§impl IntoUrlParse for InvalidUri
impl IntoUrlParse for InvalidUri
Source§fn into_url_parse(self, arg_1: impl Into<String>) -> Self::Ret
fn into_url_parse(self, arg_1: impl Into<String>) -> Self::Ret
Converts [http::uri::InvalidUri
] into MetaAddressStrategyParseError::UrlParse
with the given context.
Source§fn into_url_parse_with<__F, __ARG_1>(self, f: __F) -> Self::Ret
fn into_url_parse_with<__F, __ARG_1>(self, f: __F) -> Self::Ret
Converts [http::uri::InvalidUri
] into MetaAddressStrategyParseError::UrlParse
with the context returned by the given function.
type Ret = MetaAddressStrategyParseError
Source§impl<__T> IntoUrlParse for Result<__T, InvalidUri>
impl<__T> IntoUrlParse for Result<__T, InvalidUri>
Source§fn into_url_parse(self, arg_1: impl Into<String>) -> Self::Ret
fn into_url_parse(self, arg_1: impl Into<String>) -> Self::Ret
Converts [http::uri::InvalidUri
] into MetaAddressStrategyParseError::UrlParse
with the given context.
Source§fn into_url_parse_with<__F, __ARG_1>(self, f: __F) -> Self::Ret
fn into_url_parse_with<__F, __ARG_1>(self, f: __F) -> Self::Ret
Converts [http::uri::InvalidUri
] into MetaAddressStrategyParseError::UrlParse
with the context returned by the given function.