-
-
Notifications
You must be signed in to change notification settings - Fork 772
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
Box<_>
support for serde
#45
Labels
Comments
Byron
added a commit
to Byron/google-apis-rs
that referenced
this issue
Mar 21, 2015
They currently don't compile as Box 'serde' is not supported. See serde-rs/serde#45. Related to #34.
Is this fixed by #49? |
Yes, this works for me now, thank you ! |
78 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a recursive structure which looks very much like this:
As you can see, I have to use a
Box
to allow such a struct to exist. Withrustc_serialize
, I was able to encode and decode it, withserde
I get errors like this:This is just happening for me in the
plus1
API, so it's by no means a show-stopper.Also I may note that with an older compiler version (and rustc_serialize) I was able to just use
Box<ItemScope>
without issues. Now, it really wantsOption<Box<ItemScope>>
- may be a bug.Details on where this issue is coming from can be watched on youtube.
Meta
The text was updated successfully, but these errors were encountered: