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
Hey 👋 very excited for this crate. The way it was implemented is very similar to ideas I had for my own crate... which I never started.
One thing I would love to see is support for serialization, but more specifically, the skip_serializing_if field setting. We use this extensively on pretty much every field, because we don't want to write back to our config fields with empty or default values.
For example, here's a current config struct of ours:
Hey 👋 very excited for this crate. The way it was implemented is very similar to ideas I had for my own crate... which I never started.
One thing I would love to see is support for serialization, but more specifically, the
skip_serializing_if
field setting. We use this extensively on pretty much every field, because we don't want to write back to our config fields with empty or default values.For example, here's a current config struct of ours:
In a perfect confique world, I could see it looking something like this:
The text was updated successfully, but these errors were encountered: