We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 249d5ec commit 213f891Copy full SHA for 213f891
rosidl_runtime_rs/src/traits.rs
@@ -204,4 +204,10 @@ pub trait ActionImpl: 'static + Action {
204
205
/// Create a feedback message with the given goal ID and contents.
206
fn create_feedback_message(goal_id: &[u8; 16], feedback: &<<Self as Action>::Feedback as Message>::RmwMsg) -> <Self::FeedbackMessage as Message>::RmwMsg;
207
+
208
+ /// Get the UUID of a result request.
209
+ fn get_result_request_uuid(request: &<<Self::GetResultService as Service>::Request as Message>::RmwMsg) -> [u8; 16];
210
211
+ /// Sets the `status` field of a result response.
212
+ fn set_result_response_status(response: &mut <<Self::GetResultService as Service>::Response as Message>::RmwMsg, status: i8);
213
}
0 commit comments