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 SbgShipMotionStatus {
    pub heave_valid: bool,
    pub heave_vel_aided: bool,
    pub surge_sway_included: bool,
    pub period_available: bool,
    pub period_valid: bool,
    pub swell_mode: bool,
}

impl Default for SbgShipMotionStatus {
    fn default() -> Self {
        SbgShipMotionStatus {
            heave_valid: false,
            heave_vel_aided: false,
            surge_sway_included: false,
            period_available: false,
            period_valid: false,
            swell_mode: false,
        }
    }
}

impl ros2_client::Message for SbgShipMotionStatus {}