pub type RawGoalCallback = unsafe extern "C" fn(goal_id: *const GoalId, goal_data: *const u8, goal_len: usize, context: *mut c_void) -> GoalResponse;Expand description
Raw action goal callback that receives CDR bytes without deserialization.
ยงSafety
goal_idis valid for the duration of the callgoal_datais valid forgoal_lenbytes
Returns a GoalResponse value (0=Reject, 1=AcceptAndExecute, 2=AcceptAndDefer).