Code generation for docx-rs.
** Motivation
~docx-rs~ is using ~quick-xml~ for parsing and generating xml content.
However, ~quick-xml~ is a pull parser which means it's verbose to serialize and deserialize data type manually. To keep the project DRY (don't repeat yourself), I created this crate to provide ~proc_macro~.
** Struct Attribute
//
struct Foo { // ... }
//
struct Bar { // ... }
** Struct Field Attribute
** Enum Attribute
** Enum Variant Attribute