-
Notifications
You must be signed in to change notification settings - Fork 4
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
[derive] support generic Tree
types of generic depth
#192
Comments
Hmm, it's actually not possible to know what the depth of the outer structure should be when a generic depth is present. I.e. what if you have one item marked as I think we can probably just work around this for now by mandating:
If we have a future use case, we could add more macros to override these assumptions. |
The issue is the generic depth Line 68 in 18e56cc
You could blanket generate the impls in the derive macro for many |
I think a blanket implementation is actually the only way. Arithmetic on const generics (i.e. |
Tree
for structs containing generic Tree
typesTree
for structs containing generic Tree
types of generic depth
Tree
for structs containing generic Tree
types of generic depthTree
types of generic depth
One problem would be that a generic field type may not be dominating the overall depth. Then the outer detph would not determine the inner depth in all cases. The offset would have to be constant. And |
Currently, it doesn't seem possible to do the following properly:
We would need to annotate the
inner: T
with#[tree(depth(Y))]
, but the current depth parsing requires an integer. The depth isn't known until compile time, but is known to be Y >= 1. It seems like the depth should optionally take this compile-time generic as well.The text was updated successfully, but these errors were encountered: