-
-
Notifications
You must be signed in to change notification settings - Fork 273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for RefBox<'a, [T]>
and RefBox<'a, str>
#34
Comments
I'm not familiar with boxed unsized types. How does one go about making and using Box and Box<[T]>? |
|
You could also solve this issue with specific |
#37 Will close this issue once I add tests. |
These are useful for conservatively serializing
&str
and&[T]
then deserializing toBox<str>
andBox<[T]>
, which are analogous toString
andVec<u8>
.The text was updated successfully, but these errors were encountered: