mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-29 21:00:54 +00:00
* feat: support `NonZero*` scalar types This commits adds `Type`, `Encode`, and `Decode` impls for all the `NonZero*` types from the standard library. They are implemented as direct proxies to their primitive counterparts, except that when decoding, the values are checked to not be zero. * fixup!: remove `non-zero` cargo feature * fixup!: make `non-zero` module private * fixup!: rebase and fix trait impls