You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a use case where I need to serialize messages received on a ROS topic into a binary format.
I figured I could use Serde on the rosrust_msg::* types to achieve this.
It seems like the generated message types don't implement Serialize and Deserialize.
Would it be possible to add those derive macros to the generated message types?
I tried to do it, but I'm not sure where to append the use serde::{Serialize, Deserialize}; line in the rosrust code.
If someone can point me in the right direction I'll make a PR.
The text was updated successfully, but these errors were encountered:
I have a use case where I need to serialize messages received on a ROS topic into a binary format.
I figured I could use Serde on the rosrust_msg::* types to achieve this.
It seems like the generated message types don't implement Serialize and Deserialize.
Would it be possible to add those derive macros to the generated message types?
I tried to do it, but I'm not sure where to append the
use serde::{Serialize, Deserialize};
line in therosrust
code.If someone can point me in the right direction I'll make a PR.
The text was updated successfully, but these errors were encountered: