Add "almost unsigned" integer types #857
kriswuollett
started this conversation in
Ideas
Replies: 1 comment
-
On the other hand, this is probably best provided by a third-party library since this concept could be requested to cover many other types from third-party crates. |
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
-
As mentioned in #856, I encountered a runtime issue when testing a query that used an
u64
on SQLite. While that is not likely to change, perhaps there can be some fully supported Newtypes for "u7", "u31", and "u63" so that developers can maximize their range of desired ints, and just return anErr
from atry_into
when building a query.I realize this is something I / everyone could do themselves, but seems like it could possibly be widely used so best if distributed as part of
SeaQL
itself?Beta Was this translation helpful? Give feedback.
All reactions