@@ -84,31 +84,31 @@ impl ROSMsgType {
8484 node. subscribe :: < r2r:: std_msgs:: msg:: Float32 > ( topic, qos) ?
8585 . map ( |val| Value :: Float ( val. data . into ( ) ) ) ,
8686 ) ,
87- ROSMsgType :: Human => Box :: pin (
88- node. subscribe :: < r2r:: robo_sapiens_interfaces:: msg:: Human > ( topic, qos) ?
87+ ROSMsgType :: HumanModelPart => Box :: pin (
88+ node. subscribe :: < r2r:: robo_sapiens_interfaces:: msg:: HumanModelPart > ( topic, qos) ?
8989 . map ( |val| {
9090 serde_json:: to_value ( val)
91- . expect ( "Failed to serialize ROS2 Human msg to JSON" )
91+ . expect ( "Failed to serialize ROS2 HumanModelPart msg to JSON" )
9292 . try_into ( )
93- . expect ( "Failed to serialize ROS2 Human msg to internal representation" )
93+ . expect ( "Failed to serialize ROS2 HumanModelPart msg to internal representation" )
9494 } ) ,
9595 ) ,
96- ROSMsgType :: HumanList => Box :: pin (
97- node. subscribe :: < r2r:: robo_sapiens_interfaces:: msg:: HumanList > ( topic, qos) ?
96+ ROSMsgType :: HumanModel => Box :: pin (
97+ node. subscribe :: < r2r:: robo_sapiens_interfaces:: msg:: HumanModel > ( topic, qos) ?
9898 . map ( |val| {
9999 serde_json:: to_value ( val)
100- . expect ( "Failed to serialize ROS2 HumanList msg to JSON" )
100+ . expect ( "Failed to serialize ROS2 HumanModel msg to JSON" )
101101 . try_into ( )
102- . expect ( "Failed to serialize ROS2 HumanList msg to internal representation" )
102+ . expect ( "Failed to serialize ROS2 HumanModel msg to internal representation" )
103103 } ) ,
104104 ) ,
105- ROSMsgType :: HumanBodyPart => Box :: pin (
106- node. subscribe :: < r2r:: robo_sapiens_interfaces:: msg:: HumanBodyPart > ( topic, qos) ?
105+ ROSMsgType :: HumanModelList => Box :: pin (
106+ node. subscribe :: < r2r:: robo_sapiens_interfaces:: msg:: HumanModelList > ( topic, qos) ?
107107 . map ( |val| {
108108 serde_json:: to_value ( val)
109- . expect ( "Failed to serialize ROS2 HumanBodyPart msg to JSON" )
109+ . expect ( "Failed to serialize ROS2 HumanModelList msg to JSON" )
110110 . try_into ( )
111- . expect ( "Failed to serialize ROS2 HumanBodyPart msg to internal representation" )
111+ . expect ( "Failed to serialize ROS2 HumanModelList msg to internal representation" )
112112 } ) ,
113113 ) ,
114114 } )
0 commit comments