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 DoorState {
    pub door_time: crate::builtin_interfaces::msg::Time,
    pub door_name: ::std::string::String,
    pub current_mode: crate::rmf_door_msgs::msg::DoorMode,
}

impl Default for DoorState {
    fn default() -> Self {
        DoorState {
            door_time: crate::builtin_interfaces::msg::Time::default(),
            door_name: ::std::string::String::new(),
            current_mode: crate::rmf_door_msgs::msg::DoorMode::default(),
        }
    }
}

impl ros2_client::Message for DoorState {}