I have a IPC implementation where a process serializes a struct using bincode
On the other end, I'm receiving it and lets say this process is not aware of the struct it is receiving, Here, I want to do something like
let parsed: Result<serde_json::Value, serde_json::Error> = serde_json::from_str(json_str);
but with bincode, is it possible?
I tried doing
let deser = bincode::deserialize::<serde_json::Value>(msg.bytes()))?;
But it throws error
Error: Bincode does not support the serde::Deserializer::deserialize_any method
You can't because the bincode deserializer has to be informed about the type to expect, but
serde_json::Value
relies on the deserializer to tell it what type is next. Both requirements contradict each other. That's also expressed in the documentation ofdeserialize_any
:bincode
is one of those formats that do not describe itself.