Questions tagged [bincode]

No guidance has been provided for this tag at this time.

Any tips on how to convert a bincode serialized data into serde_json::Value?

I'm currently working on an IPC implementation where a process serializes a struct using bincode. However, on the receiving end, the process is unaware of the structure it's receiving. I want to achieve something similar to: let parsed: Result&l ...