Open ExpandingMan opened 2 years ago
It might help to explain a bit more what I'm trying to do: I have a type Column{T,S}
and I would like to serialize T,S
as strings, but they are not involved in any field of the struct. As far as I can tell, this precludes the use of StructTypes.Struct()
.
Perhaps I'm misunderstanding the intention of
CustomStruct
but I believe it is missing aconstructfrom
method. Even after defining the required methods I get, e.g.I had defined
StructTypes.lowertype(::Type{<:Column}) = Dict{String,Any}
, so I was expecting this to work.