We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the Url type has an automatic TryFrom implementation returning core::convert::Infallible.
core::convert::Infallible
It would be nice to have a TryFrom<&str> returning url::ParseError, so that programs can do
fn get<U: TryInto<Url>>(dest: U) -> Result<()> { }
(TryInto<Url> should be auto-implemented once there is TryFrom<&str>)
TryInto<Url>
TryFrom<&str>
The text was updated successfully, but these errors were encountered:
Uff, sorry, I didn't search the github issues enough. This was already solved in #569.
If you can't find the trait on docs.rs, it's because the version with the required changes hasn't been released yet.
Sorry, something went wrong.
No branches or pull requests
Currently the Url type has an automatic TryFrom implementation returning
core::convert::Infallible
.It would be nice to have a TryFrom<&str> returning url::ParseError, so that programs can do
(
TryInto<Url>
should be auto-implemented once there isTryFrom<&str>
)The text was updated successfully, but these errors were encountered: