ros2_interfaces_rolling/rmf_workcell_msgs/msg/
asset.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
4pub struct Asset {
5    pub guid: ::std::string::String,
6    #[serde(rename = "type")]    pub type_: ::std::string::String,
7}
8
9impl Default for Asset {
10    fn default() -> Self {
11        Asset {
12            guid: ::std::string::String::new(),
13            type_: ::std::string::String::new(),
14        }
15    }
16}
17
18impl ros2_client::Message for Asset {}