pub struct ActiveGoal<A: RosAction> {
pub goal_id: GoalId,
pub status: GoalStatus,
pub goal: A::Goal,
}Expand description
Active goal tracking for action server.
Fields§
§goal_id: GoalIdGoal ID.
status: GoalStatusCurrent status.
goal: A::GoalThe goal data.
Trait Implementations§
Auto Trait Implementations§
impl<A> Freeze for ActiveGoal<A>
impl<A> RefUnwindSafe for ActiveGoal<A>
impl<A> Send for ActiveGoal<A>
impl<A> Sync for ActiveGoal<A>
impl<A> Unpin for ActiveGoal<A>
impl<A> UnsafeUnpin for ActiveGoal<A>
impl<A> UnwindSafe for ActiveGoal<A>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more