Replies: 2 comments
|
I'm in full agreement with you! Unfortunately, not implementing for Instead of implementing your own By the way, it's possible that in the upcoming major release we'll get rid of |
0 replies
|
It will be released in SeaQuery 1.0 (SeaORM 2.0) 🎉 |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Say I'm generating my enums from a file:
Why the heck not?
However, this EDIT: DOES NOT WORK (I had to dig for it, which should not have been necessary, and now after I cleared another error, rust-analyzer finally showed me this won't work either):
NOPE!!!
So how about this monstrosity?
Then convert every value in the Vec to an
IdString. Seems ridiculous, but unfortunately, quite necessary today.Since
impl From<&str> for Idenexists, why notimpl From<String> for Iden, sinceIdenbasically is a string?All reactions