ros2_interfaces_rolling/rmf_task_msgs/msg/
priority.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
4pub struct Priority {
5    pub value: u64, // default: 0
6}
7
8impl Default for Priority {
9    fn default() -> Self {
10        Priority {
11            value: 0,
12        }
13    }
14}
15
16impl ros2_client::Message for Priority {}