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