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
This implementation is invalid:
parity-common/uint/src/uint.rs
Lines 1349 to 1356 in a5ef730
As per the docs on From:
From
Note: This trait must not fail. The From trait is intended for perfect conversions. If the conversion can fail or is not perfect, use TryFrom.
The text was updated successfully, but these errors were encountered:
From<i128> is also invalid:
From<i128>
Lines 487 to 494 in a5ef730
Sorry, something went wrong.
This initial impl predates the stabilization of TryFrom trait and should be replaced by that (breaking change) indeed nowadays.
TryFrom
No branches or pull requests
This implementation is invalid:
parity-common/uint/src/uint.rs
Lines 1349 to 1356 in a5ef730
As per the docs on
From
:The text was updated successfully, but these errors were encountered: