Flix
Flix
Eh, Github didn't notice, but I merged this. Thank you for the contribution :) It is also released to crates.io .
Sorry it looks closed 😅
Hmm unfortunately, when making the enum untagged, it cannot deserialize properly anymore (tests fail). Maybe it seems like a serde issue that it produces the field twice? I am unsure...
Hi, at first: thank you! I have investigated this before: - The generic `Resource` enum is using the tag `resourceType` to distinguish different resource types, as per spec. - The...
That is indeed a fundamentally different design and sounds more like a new library if the structs are generated in user code. I don't think this will find its way...
There is now even more possibilities: It would be possible to make your own structs for the profile (in what way ever, generated or not). Then you can use custom...
Switching back to derive_builder made up for a lot of the compile time resources, so now it is mostly serde. But it turns out, there is not too much up...
> Was this closed as a won't do or are there some improvements in the 0.14.0 release? Neither nor @fage88 . As the previous comment said, going back to runtime...
Hi, thank you for the interest. There is currently no generic way for arbitrary operations, partly due to unknown return types, partly due to the reason I want to implement...
As of 0.14.0 it is now possible to send custom requests and therefore implement your own operations and implementing missing operations :) ```rust let base = client.base_url(); let response =...