Is it possible to retrieve types in zig at runtime, I am running a web server, so I need the type of struct to parse the json
Not to get into specifics but essentially, I am building a web server in zig, and would like to get the struct type at runtime, basically I don’t want the user of the web server to have to build there own jsonParser for every struct they may want to store in a DB, and so at runtime I need the type for it to be parsed from json into the specified struct type. In essence, basically a json parser function that returns the parsed value, which operates at runtime.