mitsuhiko / deser

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

Implement skip_serializing_if #5

Closed mitsuhiko closed 2 years ago

mitsuhiko commented 2 years ago

This is the most common attribute we currently use in serde. This relates to #3 however one of the most common cases is to skip the serialization of defaulted or nullable values.

mitsuhiko commented 2 years ago

This has a basic implementation now.