You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since the generated code ends up doing unwrap_unchecked anyways, consider using MaybeUninit instead of Option as it won't add an unnecessary enum tag on every field (Saving space)
The text was updated successfully, but these errors were encountered:
Hi :)
You're right. I'm currently working on some new features and a refactor in the refactor branch. I'll add your suggestion to it before merging it into main.
Since the generated code ends up doing
unwrap_unchecked
anyways, consider usingMaybeUninit
instead of Option as it won't add an unnecessary enum tag on every field (Saving space)The text was updated successfully, but these errors were encountered: