ros2_interfaces_rolling/rmf_task_msgs/msg/
loop_.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Loop {
    pub task_id: ::std::string::String,
    pub robot_type: ::std::string::String,
    pub num_loops: u32,
    pub start_name: ::std::string::String,
    pub finish_name: ::std::string::String,
}

impl Default for Loop {
    fn default() -> Self {
        Loop {
            task_id: ::std::string::String::new(),
            robot_type: ::std::string::String::new(),
            num_loops: 0,
            start_name: ::std::string::String::new(),
            finish_name: ::std::string::String::new(),
        }
    }
}

impl ros2_client::Message for Loop {}