raven-stas
Results
2
comments of
raven-stas
It's when trying to read the message generated on the other platform. So I was getting an error when reading it and ended up printing out what was generated there...
Something like: ```rust let req_slice = std::slice::from_raw_parts((req_packet.data as (* const u8)), req_packet.dataLength); println!("got here.... {:#?}", req_slice); let req_result: Result = deserialize_from_slice(req_slice); ``` writing from the *quick-protobuf* client was something like:...