mitsuhiko / deser

Experimental rust serialization library
https://docs.rs/deser
Apache License 2.0
287 stars 8 forks source link

Implement Option Handling #3

Closed mitsuhiko closed 2 years ago

mitsuhiko commented 2 years ago

Currently optional values are not supported yet. This requires a bit of an explicit design consideration as for many situations users want different behavior with regards to how undefined/missing and null values are handled. Likewise there should be some consideration about whether optional values can automatically be skipped on serialization if desired.

mitsuhiko commented 2 years ago

Basic support is implemented but I want to revisit this.