ros2_interfaces_humble/ros_gz_interfaces/msg/float32_array.rs
1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
4pub struct Float32Array {
5 pub data: Vec<f32>,
6}
7
8impl Default for Float32Array {
9 fn default() -> Self {
10 Float32Array {
11 data: Vec::new(),
12 }
13 }
14}
15
16impl ros2_client::Message for Float32Array {}