ros2_interfaces_rolling/actuator_msgs/msg/
actuators_normalized.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
4pub struct ActuatorsNormalized {
5    pub header: crate::std_msgs::msg::Header,
6    pub normalized: Vec<f64>,
7}
8
9impl Default for ActuatorsNormalized {
10    fn default() -> Self {
11        ActuatorsNormalized {
12            header: crate::std_msgs::msg::Header::default(),
13            normalized: Vec::new(),
14        }
15    }
16}
17
18impl ros2_client::Message for ActuatorsNormalized {}