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 FrameGraphRequest {

}

impl Default for FrameGraphRequest {
    fn default() -> Self {
        FrameGraphRequest {

        }
    }
}

impl ros2_client::Message for FrameGraphRequest {}



#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct FrameGraphResponse {
    pub frame_yaml: ::std::string::String,
}

impl Default for FrameGraphResponse {
    fn default() -> Self {
        FrameGraphResponse {
            frame_yaml: ::std::string::String::new(),
        }
    }
}

impl ros2_client::Message for FrameGraphResponse {}


pub struct FrameGraph;
impl ros2_client::Service for FrameGraph {
    type Request = FrameGraphRequest;
    type Response = FrameGraphResponse;

    fn request_type_name(&self) -> &str { "FrameGraphRequest" }
    fn response_type_name(&self) -> &str { "FrameGraphResponse" }
}