#[repr(C)]
#[derive(Debug, ros2_types::Ros2Msg, ros2_types::TypeDescription)]
#[ros2(
package = "example_interfaces",
interface_type = "action",
uuid_path = "crate::ros2msg"
)]
#[cfg_attr(
not(feature = "rcl"),
derive(ros2_types::serde::Serialize, ros2_types::serde::Deserialize)
)]
#[cfg_attr(not(feature = "rcl"), serde(crate = "ros2_types::serde"))]
pub struct Fibonacci_Goal {
pub order: i32,
}
#[repr(C)]
#[derive(Debug, ros2_types::Ros2Msg, ros2_types::TypeDescription)]
#[ros2(
package = "example_interfaces",
interface_type = "action",
uuid_path = "crate::ros2msg"
)]
#[cfg_attr(
not(feature = "rcl"),
derive(ros2_types::serde::Serialize, ros2_types::serde::Deserialize)
)]
#[cfg_attr(not(feature = "rcl"), serde(crate = "ros2_types::serde"))]
pub struct Fibonacci_Result {
pub sequence: crate::msg::I32Seq<0>,
}
#[repr(C)]
#[derive(Debug, ros2_types::Ros2Msg, ros2_types::TypeDescription)]
#[ros2(
package = "example_interfaces",
interface_type = "action",
uuid_path = "crate::ros2msg"
)]
#[cfg_attr(
not(feature = "rcl"),
derive(ros2_types::serde::Serialize, ros2_types::serde::Deserialize)
)]
#[cfg_attr(not(feature = "rcl"), serde(crate = "ros2_types::serde"))]
pub struct Fibonacci_Feedback {
pub sequence: crate::msg::I32Seq<0>,
}