ros2-interfaces-iron 0.0.2

Structs for Messages and Services listed by ROS Index for ROS2 Iron. Built around the `ros2-client` crate.
Documentation
use serde::{Deserialize, Serialize};


#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct CadMatchDetectObjectRequest {
    pub template_id: ::std::string::String,
    pub pose_frame: ::std::string::String,
    pub region_of_interest_id: ::std::string::String,
    pub load_carrier_id: ::std::string::String,
    pub load_carrier_compartment: crate::rc_reason_msgs::msg::Compartment,
    pub robot_pose: crate::geometry_msgs::msg::Pose,
    pub collision_detection: crate::rc_reason_msgs::msg::CollisionDetection,
    pub pose_prior_ids: Vec<::std::string::String>,
    pub data_acquisition_mode: ::std::string::String,
}

impl Default for CadMatchDetectObjectRequest {
    fn default() -> Self {
        CadMatchDetectObjectRequest {
            template_id: ::std::string::String::new(),
            pose_frame: ::std::string::String::new(),
            region_of_interest_id: ::std::string::String::new(),
            load_carrier_id: ::std::string::String::new(),
            load_carrier_compartment: crate::rc_reason_msgs::msg::Compartment::default(),
            robot_pose: crate::geometry_msgs::msg::Pose::default(),
            collision_detection: crate::rc_reason_msgs::msg::CollisionDetection::default(),
            pose_prior_ids: Vec::new(),
            data_acquisition_mode: ::std::string::String::new(),
        }
    }
}

impl ros2_client::Message for CadMatchDetectObjectRequest {}



#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct CadMatchDetectObjectResponse {
    pub timestamp: crate::builtin_interfaces::msg::Time,
    pub matches: Vec<crate::rc_reason_msgs::msg::Match>,
    pub grasps: Vec<crate::rc_reason_msgs::msg::Grasp>,
    pub load_carriers: Vec<crate::rc_reason_msgs::msg::LoadCarrier>,
    pub return_code: crate::rc_common_msgs::msg::ReturnCode,
}

impl Default for CadMatchDetectObjectResponse {
    fn default() -> Self {
        CadMatchDetectObjectResponse {
            timestamp: crate::builtin_interfaces::msg::Time::default(),
            matches: Vec::new(),
            grasps: Vec::new(),
            load_carriers: Vec::new(),
            return_code: crate::rc_common_msgs::msg::ReturnCode::default(),
        }
    }
}

impl ros2_client::Message for CadMatchDetectObjectResponse {}


pub struct CadMatchDetectObject;
impl ros2_client::Service for CadMatchDetectObject {
    type Request = CadMatchDetectObjectRequest;
    type Response = CadMatchDetectObjectResponse;

    fn request_type_name(&self) -> &str { "CadMatchDetectObjectRequest" }
    fn response_type_name(&self) -> &str { "CadMatchDetectObjectResponse" }
}