On Wednesday, 2 April 2025 at 15:37:46 UTC, Anonymouse wrote:
I'm trying to replace my use of `std.json` with `asdf`.What should I do? I don't want to just catch the exception but so far that's the best solution I have.
```d struct S { static struct Inner { string s = "foo"; } @serdeOptional Nullable!(Inner) inner = Inner.init; } ``` seems working