Struct r2r::control_msgs::action::FollowJointTrajectory::Action
source · pub struct Action();
Trait Implementations§
source§impl<'de> Deserialize<'de> for Action
impl<'de> Deserialize<'de> for Action
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl WrappedActionTypeSupport for Action
impl WrappedActionTypeSupport for Action
type Goal = Goal
type Result = Result
type Feedback = Feedback
type FeedbackMessage = FeedbackMessage
type SendGoal = Service
type GetResult = Service
fn get_ts() -> &'static rosidl_action_type_support_t
fn make_goal_request_msg(goal_id: UUID, goal: Goal) -> Request
fn make_goal_response_msg(accepted: bool, stamp: Time) -> Response
fn make_feedback_msg(goal_id: UUID, feedback: Feedback) -> FeedbackMessage
fn make_result_request_msg(goal_id: UUID) -> Request
fn make_result_response_msg(status: i8, result: Result) -> Response
fn destructure_goal_request_msg(msg: Request) -> (UUID, Goal)
fn destructure_goal_response_msg(msg: Response) -> (bool, Time)
fn destructure_feedback_msg(msg: FeedbackMessage) -> (UUID, Feedback)
fn destructure_result_response_msg(msg: Response) -> (i8, Result)
fn destructure_result_request_msg(msg: Request) -> UUID
impl StructuralPartialEq for Action
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnwindSafe for Action
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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