#[repr(u32)]pub enum rcl_action_goal_event_e {
GOAL_EVENT_EXECUTE = 0,
GOAL_EVENT_CANCEL_GOAL = 1,
GOAL_EVENT_SUCCEED = 2,
GOAL_EVENT_ABORT = 3,
GOAL_EVENT_CANCELED = 4,
GOAL_EVENT_NUM_EVENTS = 5,
}
Variants§
GOAL_EVENT_EXECUTE = 0
GOAL_EVENT_CANCEL_GOAL = 1
GOAL_EVENT_SUCCEED = 2
GOAL_EVENT_ABORT = 3
GOAL_EVENT_CANCELED = 4
GOAL_EVENT_NUM_EVENTS = 5
Trait Implementations§
Source§impl Clone for rcl_action_goal_event_e
impl Clone for rcl_action_goal_event_e
Source§fn clone(&self) -> rcl_action_goal_event_e
fn clone(&self) -> rcl_action_goal_event_e
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for rcl_action_goal_event_e
impl Debug for rcl_action_goal_event_e
Source§impl Hash for rcl_action_goal_event_e
impl Hash for rcl_action_goal_event_e
Source§impl PartialEq for rcl_action_goal_event_e
impl PartialEq for rcl_action_goal_event_e
impl Copy for rcl_action_goal_event_e
impl Eq for rcl_action_goal_event_e
impl StructuralPartialEq for rcl_action_goal_event_e
Auto Trait Implementations§
impl Freeze for rcl_action_goal_event_e
impl RefUnwindSafe for rcl_action_goal_event_e
impl Send for rcl_action_goal_event_e
impl Sync for rcl_action_goal_event_e
impl Unpin for rcl_action_goal_event_e
impl UnwindSafe for rcl_action_goal_event_e
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more