-
Notifications
You must be signed in to change notification settings - Fork 19
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
Implement serde traits for ego-tree #34
Conversation
I will perform a more thorough review |
Remove disgusting whitespace
Since it doesn't look that this will be merged any time soon, I'll convert this to a draft |
I addressed the various issues that had been pointed out to me. All that is missing are more serious tests with |
Co-authored-by: Carlo Federico Vescovo <cfvescovo@users.noreply.github.com>
Correct some typos too Co-authored-by: Giovanni Zaccaria <71092108+lozack19@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just some nits but I agree with the overall approach.
I would also like to thank you for keeping with us and manually implement the structure deserialization which really is a mouthful.
Co-authored-by: Adam Reichold <adamreichold@users.noreply.github.com>
LGTM, merging now |
Solves #21
I encapsulated everything inside the
serde
module. I implemented manuallySerialize
andDeseriaize
forTree<T>
Node<T>
NodeId
Needs a review focused on security, and maybe more tests.