pub struct MotionPlanDetailedResponse {
pub trajectory_start: RobotState,
pub group_name: String,
pub trajectory: Vec<RobotTrajectory>,
pub description: Vec<String>,
pub processing_time: Vec<f64>,
pub error_code: MoveItErrorCodes,
}Fields§
§trajectory_start: RobotState§group_name: String§trajectory: Vec<RobotTrajectory>§description: Vec<String>§processing_time: Vec<f64>§error_code: MoveItErrorCodesTrait Implementations§
Source§impl Clone for MotionPlanDetailedResponse
impl Clone for MotionPlanDetailedResponse
Source§fn clone(&self) -> MotionPlanDetailedResponse
fn clone(&self) -> MotionPlanDetailedResponse
Returns a duplicate 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 MotionPlanDetailedResponse
impl Debug for MotionPlanDetailedResponse
Source§impl Default for MotionPlanDetailedResponse
impl Default for MotionPlanDetailedResponse
Source§impl<'de> Deserialize<'de> for MotionPlanDetailedResponse
impl<'de> Deserialize<'de> for MotionPlanDetailedResponse
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
impl Message for MotionPlanDetailedResponse
impl StructuralPartialEq for MotionPlanDetailedResponse
Auto Trait Implementations§
impl Freeze for MotionPlanDetailedResponse
impl RefUnwindSafe for MotionPlanDetailedResponse
impl Send for MotionPlanDetailedResponse
impl Sync for MotionPlanDetailedResponse
impl Unpin for MotionPlanDetailedResponse
impl UnwindSafe for MotionPlanDetailedResponse
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