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
impl TryInto<NaiveDateTime> for DateTime
impl TryFrom<DateTime> for NaiveDateTime
zip2/src/types.rs
Lines 110 to 122 in 4b295d3
Why does this implement TryInto<NaiveDateTime> for DateTime instead of TryFrom<DateTime> for NaiveDateTime?
TryInto<NaiveDateTime> for DateTime
TryFrom<DateTime> for NaiveDateTime
The text was updated successfully, but these errors were encountered:
refactor: Convert impl TryInto<NaiveDateTime> for DateTime to `impl…
3afe549
… TryFrom<DateTime> for NaiveDateTime` (#136)
I was unfamiliar with the convention that favors TryFrom as the explicitly-implemented trait. Fixed in 3afe549.
Sorry, something went wrong.
No branches or pull requests
zip2/src/types.rs
Lines 110 to 122 in 4b295d3
Why does this implement
TryInto<NaiveDateTime> for DateTime
instead ofTryFrom<DateTime> for NaiveDateTime
?The text was updated successfully, but these errors were encountered: