-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
Avoid recursive interfaces #64
Comments
So I haven't fully realized the idea yet, but as of #75 the actual deserialize methods are asynchronous, which means we could return I think. I need to think more about, uh, how the whole thing would be implemented, because the future that yields would need to give information to the waker on: what type to deserialize, where to deserialize it. Worth experimenting with further later. |
This has been handled in #96 — recursive interfaces are fine, I did the async thing, it works unreasonably well. I guess I should introduce |
To be able to deserialize deeply nested records, and also to have "filter" functionality: digging deep into a document, only deserializing what you need from it, not the whole thing, something serde doesn't really let you do.
The text was updated successfully, but these errors were encountered: