Skip to content

Commit c56212f

Browse files
committed
fix visibility
1 parent b57faf8 commit c56212f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

rclrs/src/action.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,17 @@ impl<T> ServerGoalHandle<T>
7878
where
7979
T: rosidl_runtime_rs::Action,
8080
{
81-
pub(crate) fn new(rcl_handle: Arc<rcl_action_goal_handle_t>) {}
81+
pub fn new(rcl_handle: Arc<rcl_action_goal_handle_t>) {}
8282

83-
pub(crate) fn is_canceling(&self) -> bool {
83+
pub fn is_canceling(&self) -> bool {
8484
false
8585
}
8686

87-
pub(crate) fn is_active(&self) -> bool {
87+
pub fn is_active(&self) -> bool {
8888
false
8989
}
9090

91-
pub(crate) fn is_executing(&self) -> bool {
91+
pub fn is_executing(&self) -> bool {
9292
false
9393
}
9494
}

0 commit comments

Comments
 (0)