ros2_interfaces_rolling/tuw_nav_msgs/msg/
float64_array.rs

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