gitextract_6vrwi07n/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── nightly-build.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .release-plz.toml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src/ │ ├── attributes.rs │ └── lib.rs └── tests/ ├── argument_modifier.rs ├── associated_const_delegation.rs ├── async_await.rs ├── closure.rs ├── delegate_to_enum.rs ├── delegation.rs ├── expand/ │ ├── fields.expanded.rs │ └── fields.rs ├── expr.rs ├── expr_attribute.rs ├── fields.rs ├── function.rs ├── generic.rs ├── in_macro_expansion.rs ├── inline_args.rs ├── nested.rs ├── returntype.rs ├── segment_attributes.rs ├── stack.rs └── through_trait.rs