ros2_interfaces_rolling/moveit_msgs/msg/
cartesian_trajectory.rs

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

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct CartesianTrajectory {
    pub header: crate::std_msgs::msg::Header,
    pub tracked_frame: ::std::string::String,
    pub points: Vec<crate::moveit_msgs::msg::CartesianTrajectoryPoint>,
}

impl Default for CartesianTrajectory {
    fn default() -> Self {
        CartesianTrajectory {
            header: crate::std_msgs::msg::Header::default(),
            tracked_frame: ::std::string::String::new(),
            points: Vec::new(),
        }
    }
}

impl ros2_client::Message for CartesianTrajectory {}