@@ -404,6 +404,7 @@ pub mod rmw {
404
404
pub description : rosidl_runtime_rs:: String ,
405
405
pub additional_constraints : rosidl_runtime_rs:: String ,
406
406
pub read_only : bool ,
407
+ pub dynamic_typing : bool ,
407
408
pub floating_point_range : rosidl_runtime_rs:: BoundedSequence <
408
409
crate :: vendor:: rcl_interfaces:: msg:: rmw:: FloatingPointRange ,
409
410
1 ,
@@ -1269,6 +1270,7 @@ pub struct ParameterDescriptor {
1269
1270
pub description : std:: string:: String ,
1270
1271
pub additional_constraints : std:: string:: String ,
1271
1272
pub read_only : bool ,
1273
+ pub dynamic_typing : bool ,
1272
1274
pub floating_point_range : rosidl_runtime_rs:: BoundedSequence <
1273
1275
crate :: vendor:: rcl_interfaces:: msg:: rmw:: FloatingPointRange ,
1274
1276
1 ,
@@ -1298,6 +1300,7 @@ impl rosidl_runtime_rs::Message for ParameterDescriptor {
1298
1300
description : msg. description . as_str ( ) . into ( ) ,
1299
1301
additional_constraints : msg. additional_constraints . as_str ( ) . into ( ) ,
1300
1302
read_only : msg. read_only ,
1303
+ dynamic_typing : msg. dynamic_typing ,
1301
1304
floating_point_range : msg. floating_point_range ,
1302
1305
integer_range : msg. integer_range ,
1303
1306
} ) ,
@@ -1307,6 +1310,7 @@ impl rosidl_runtime_rs::Message for ParameterDescriptor {
1307
1310
description : msg. description . as_str ( ) . into ( ) ,
1308
1311
additional_constraints : msg. additional_constraints . as_str ( ) . into ( ) ,
1309
1312
read_only : msg. read_only ,
1313
+ dynamic_typing : msg. dynamic_typing ,
1310
1314
floating_point_range : msg. floating_point_range . clone ( ) ,
1311
1315
integer_range : msg. integer_range . clone ( ) ,
1312
1316
} ) ,
@@ -1320,6 +1324,7 @@ impl rosidl_runtime_rs::Message for ParameterDescriptor {
1320
1324
description : msg. description . to_string ( ) ,
1321
1325
additional_constraints : msg. additional_constraints . to_string ( ) ,
1322
1326
read_only : msg. read_only ,
1327
+ dynamic_typing : msg. dynamic_typing ,
1323
1328
floating_point_range : msg. floating_point_range ,
1324
1329
integer_range : msg. integer_range ,
1325
1330
}
0 commit comments