This Rust library serves the purporse of implement [Deref
],[DerefMut
] and [From
] in new types,either for the first value of a tuple struct,the "value" or "slot" field or the specified in the attribute.While you also can derive other traits on it.This procedural macro is no_std.
```rust use fastnewtype::new_type;
struct FirstField(u32, 16);
struct ValueField { value: u16, other_meta: u16, }
struct SlotField { slot: u16, other_meta: u16, }
struct SpecField { other: u16, other_meta: u16, }
```
This code is licensed under the Unlicense.