You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: Updates documentation and examples to bring it up to date with 0.0.8 (#128)
* Adds doc comments to all record root options.
* Documentation updates and separated options to a folder.
* Used AI to create lots of examples.
The fact that it's written by AI means its probably a lot more verbose than it could be, but it has pretty good coverage of features, and it saved me ALOT of time.
* `cargo fmt`
- <code>"strict"</code> - The attributes must be in the same order as the fields with no fields between them.
38
-
- <code>"loose"</code> - The attributes must be in the same order as the fields, but there can be fields between them.
39
-
- <code>"none"</code> - The attributes can be in any order.
36
+
Set if the order of attributes is important when deserializing.<br/>
37
+
- <code>"strict"</code>: The attributes must come directly after each other, and this group will try to deserialize them in one go.<br/>
38
+
- <code>"loose"</code>: The order of attributes must come relative to each other, but they can be separated by other attributes outside this group.<br/>
39
+
- <code>"none"</code> (default): The order of attributes is not important.
0 commit comments