@@ -404,6 +404,7 @@ pub mod rmw {
404404 pub description : rosidl_runtime_rs:: String ,
405405 pub additional_constraints : rosidl_runtime_rs:: String ,
406406 pub read_only : bool ,
407+ pub dynamic_typing : bool ,
407408 pub floating_point_range : rosidl_runtime_rs:: BoundedSequence <
408409 crate :: vendor:: rcl_interfaces:: msg:: rmw:: FloatingPointRange ,
409410 1 ,
@@ -1269,6 +1270,7 @@ pub struct ParameterDescriptor {
12691270 pub description : std:: string:: String ,
12701271 pub additional_constraints : std:: string:: String ,
12711272 pub read_only : bool ,
1273+ pub dynamic_typing : bool ,
12721274 pub floating_point_range : rosidl_runtime_rs:: BoundedSequence <
12731275 crate :: vendor:: rcl_interfaces:: msg:: rmw:: FloatingPointRange ,
12741276 1 ,
@@ -1298,6 +1300,7 @@ impl rosidl_runtime_rs::Message for ParameterDescriptor {
12981300 description : msg. description . as_str ( ) . into ( ) ,
12991301 additional_constraints : msg. additional_constraints . as_str ( ) . into ( ) ,
13001302 read_only : msg. read_only ,
1303+ dynamic_typing : msg. dynamic_typing ,
13011304 floating_point_range : msg. floating_point_range ,
13021305 integer_range : msg. integer_range ,
13031306 } ) ,
@@ -1307,6 +1310,7 @@ impl rosidl_runtime_rs::Message for ParameterDescriptor {
13071310 description : msg. description . as_str ( ) . into ( ) ,
13081311 additional_constraints : msg. additional_constraints . as_str ( ) . into ( ) ,
13091312 read_only : msg. read_only ,
1313+ dynamic_typing : msg. dynamic_typing ,
13101314 floating_point_range : msg. floating_point_range . clone ( ) ,
13111315 integer_range : msg. integer_range . clone ( ) ,
13121316 } ) ,
@@ -1320,6 +1324,7 @@ impl rosidl_runtime_rs::Message for ParameterDescriptor {
13201324 description : msg. description . to_string ( ) ,
13211325 additional_constraints : msg. additional_constraints . to_string ( ) ,
13221326 read_only : msg. read_only ,
1327+ dynamic_typing : msg. dynamic_typing ,
13231328 floating_point_range : msg. floating_point_range ,
13241329 integer_range : msg. integer_range ,
13251330 }
0 commit comments