ros2_interfaces_rolling/rcl_interfaces/msg/set_parameters_result.rs
1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
4pub struct SetParametersResult {
5 pub successful: bool,
6 pub reason: ::std::string::String,
7}
8
9impl Default for SetParametersResult {
10 fn default() -> Self {
11 SetParametersResult {
12 successful: false,
13 reason: ::std::string::String::new(),
14 }
15 }
16}
17
18impl ros2_client::Message for SetParametersResult {}