Hi, I'm using dictionary-struct conversions quite extensively when doing HDF5 I/O. In some cases, some fields of structs are not there in the file because of former versions.
To cope with that, I currently use a pattern with https://kristofferc.github.io/LazilyInitializedFields.jl/ where fields that may not be there are decorated with @lazy.
As such it seems StructUtils does not support nested lazy structs. Would you be open to supporting that ?
Maybe with a dedicated extension ?
Moreover, there does not seem to be an example with parametric types ? Is this intentional ?
Hi, I'm using dictionary-struct conversions quite extensively when doing HDF5 I/O. In some cases, some fields of structs are not there in the file because of former versions.
To cope with that, I currently use a pattern with https://kristofferc.github.io/LazilyInitializedFields.jl/ where fields that may not be there are decorated with
@lazy.As such it seems
StructUtilsdoes not support nested lazy structs. Would you be open to supporting that ?Maybe with a dedicated extension ?
Moreover, there does not seem to be an example with parametric types ? Is this intentional ?