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
In #42 we discussed how some types, like Message are currently String but that type is perhaps too permissive when encoding. We have a few options to deal with this:
use Vec<u8> everywhere
use a type like BString to give a string-like api while maintaining that it is just a vec of bytes in memory
non-type system solution, using comments?
The text was updated successfully, but these errors were encountered:
leshow
changed the title
Handle v4 ASCII types
Handle v4 ASCII option types
Jan 12, 2023
In #42 we discussed how some types, like
Message
are currentlyString
but that type is perhaps too permissive when encoding. We have a few options to deal with this:Vec<u8>
everywhereBString
to give a string-like api while maintaining that it is just a vec of bytes in memoryThe text was updated successfully, but these errors were encountered: