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
Perhaps I'm misunderstanding the intention of CustomStruct but I believe it is missing a constructfrom method. Even after defining the required methods I get, e.g.
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.The text was updated successfully, but these errors were encountered: