Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
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
Implement
Decode
,Encode
andType
forBox
,Arc
,Cow
andRc
#3674base: main
Are you sure you want to change the base?
Implement
Decode
,Encode
andType
forBox
,Arc
,Cow
andRc
#3674Changes from all commits
9d1447a
f6122de
14f7013
a66d0eb
82f2ccd
da34017
d0e4f39
3857c69
308a03e
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These impls aren't really going to be practical to use. Consider the most common usage; there is basically never a row retained that can be borrowed from.
query_as()
,query_scalar()
and all the macro variants throw away the row value after deserializing.#[derive(FromRow)]
doesn't support borrowed values.Manual calls to
Row::get()
would work, but that's about it. I think that's gonna confuse people more than anything. Arguably, we could get rid of the lifetime onFromRow
entirely and only support deserializing from an owned row. It's more of an "it's there if you really wanna use it" kind of thing.I think we could support both borrowed and owned data in the future with specialization, but it's not really feasible in the language currently.
I think for similar reasons, Serde only supports deserializing
Cow::Owned
despite having better support for deserializing from borrowed data overall.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At first I only implemented
Decode
forCow::Owned
but I switched toCow::Borrowed
because the current impls also useCow::Borrowed
and changing this would be a breaking change (I think?).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might get weird with non-
'static
lifetimes. I would test that it's actually possible to bind with borrowed data.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could possibly use a comment about how
ToOwned
is only required to satisfyCow
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Weird way to style this. The requirements for a given type parameter should be grouped together.