ros2_interfaces_rolling/example_interfaces/msg/
float32.rs1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
4pub struct Float32 {
5 pub data: f32,
6}
7
8impl Default for Float32 {
9 fn default() -> Self {
10 Float32 {
11 data: 0.0,
12 }
13 }
14}
15
16impl ros2_client::Message for Float32 {}