ros2-interfaces-rolling 0.0.1

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

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct ScanPoint2208 {
    pub echo: u8,
    pub layer: u8,
    pub transparent_point: bool,
    pub clutter_atmospheric: bool,
    pub ground: bool,
    pub dirt: bool,
    pub horizontal_angle: i16,
    pub radial_distance: u16,
    pub echo_pulse_width: u16,
}

impl Default for ScanPoint2208 {
    fn default() -> Self {
        ScanPoint2208 {
            echo: 0,
            layer: 0,
            transparent_point: false,
            clutter_atmospheric: false,
            ground: false,
            dirt: false,
            horizontal_angle: 0,
            radial_distance: 0,
            echo_pulse_width: 0,
        }
    }
}

impl ros2_client::Message for ScanPoint2208 {}