Request to Re-export IntoConflictValueClause and UndecoratedInsertRecord to diesel::upsert
#3738
Abhicodes-crypto
started this conversation in
Ideas
Replies: 2 comments
-
Update : I am able to use this |
Beta Was this translation helpful? Give feedback.
0 replies
-
Types/Traits that are not publicly exported are private because we do not want to expose too much internals of diesel as stable API. This applies here as well. If you want to see a type as part of the public API I would expect such a proposal to include information about:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
While using
on_conflict_do_nothing()
function under a generic function. I get the error thatIntoConflictValueClause and UndecoratedInsertRecord
trait bounds are not satisfied. These traits are declared pub, but query_builder::upsert is a private module and hence these traits can't be imported.It would be helpful if these traits are available for applications to import.
Beta Was this translation helpful? Give feedback.
All reactions