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