StructTypes.jl icon indicating copy to clipboard operation
StructTypes.jl copied to clipboard

Abstract definitions and convenience methods for describing, processing, and constructing Julia objects

Results 21 StructTypes.jl issues
Sort by recently updated
recently updated
newest added

``` @kwdef struct Person name::String fingers::Int=2 end StructTypes.excludes(::Type{Human}) = (:fingers,) ``` In the above example, `JSON3.write(Person("John"))` returns `{"name":"John"}` as expected. However when we deserialize, we get ```Cannot `convert` an object...