Nukesor / Nukesor/inter-struct
Field Attributes
Nobody has claimed this yet.
- Dominant language
- Rust
- Stars
- 21
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
For more control about which fields should be used by InterStruct or in which way they should be used, field attributes will be added.
The idea is to have serde-like configuration pattern. I.e.:
struct SomeStruct {
#[inter_struct(rename="something_else", unchecked)]
something: String,
}
For now several options are planned:
-
uncheckedInterStruct does some naive type checking by simply comparing the two types tokens.
If the user is sure that the types are identical,uncheckedwill disable all of InterStruct's type checking. -
rename="OtherName"This allows to map a field to a differently named field on the target struct. -
ignoreInterStruct will completely ignore this field.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
The issue names no files, tests, or implementation entry points. Start by locating InterStruct's field-attribute parsing and type-checking code, then determine how serde-like attributes should represent unchecked, rename, and ignore. Done means all three listed options work for the shown struct syntax and are covered by tests.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- rust
- Domain
- tooling
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 25/100