Skip to content
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

allow fields to represent top level attributes #13

Open
ModProg opened this issue Nov 5, 2023 · 0 comments
Open

allow fields to represent top level attributes #13

ModProg opened this issue Nov 5, 2023 · 0 comments

Comments

@ModProg
Copy link
Owner

ModProg commented Nov 5, 2023

i.e.:

#[derive(FromAttr)]
#[attribute(flatten)]
struct FieldAttribute {
    default: FlagOrValue<Expr>,
    children: bool,
}

would parse

#[default]
#[default = <expr>]
// This is supported additionally, because
// `=` only supports a subset of expressions
#[default(<expr>)]

#[children]

We could support this maybe as a fieldlevel attribute as well, or allow the field value to be anything that implements FromAttr to allow hybrid structs with nested and unnested attributes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant