Struct rclrust_msg::trajectory_msgs::msg::JointTrajectoryPoint
source · [−]pub struct JointTrajectoryPoint {
pub positions: Vec<f64>,
pub velocities: Vec<f64>,
pub accelerations: Vec<f64>,
pub effort: Vec<f64>,
pub time_from_start: Duration,
}Fields
positions: Vec<f64>velocities: Vec<f64>accelerations: Vec<f64>effort: Vec<f64>time_from_start: DurationTrait Implementations
sourceimpl Clone for JointTrajectoryPoint
impl Clone for JointTrajectoryPoint
sourcefn clone(&self) -> JointTrajectoryPoint
fn clone(&self) -> JointTrajectoryPoint
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for JointTrajectoryPoint
impl Debug for JointTrajectoryPoint
sourceimpl Default for JointTrajectoryPoint
impl Default for JointTrajectoryPoint
sourceimpl MessageT for JointTrajectoryPoint
impl MessageT for JointTrajectoryPoint
type Raw = JointTrajectoryPoint_Raw
type RawRef = JointTrajectoryPoint_RawRef
fn type_support() -> *const c_void
unsafe fn from_raw(from: &Self::Raw) -> Self
unsafe fn to_raw_ref(&self) -> Self::RawRef
sourceimpl PartialEq<JointTrajectoryPoint> for JointTrajectoryPoint
impl PartialEq<JointTrajectoryPoint> for JointTrajectoryPoint
sourcefn eq(&self, other: &JointTrajectoryPoint) -> bool
fn eq(&self, other: &JointTrajectoryPoint) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &JointTrajectoryPoint) -> bool
fn ne(&self, other: &JointTrajectoryPoint) -> bool
This method tests for !=.
impl StructuralPartialEq for JointTrajectoryPoint
Auto Trait Implementations
impl RefUnwindSafe for JointTrajectoryPoint
impl Send for JointTrajectoryPoint
impl Sync for JointTrajectoryPoint
impl Unpin for JointTrajectoryPoint
impl UnwindSafe for JointTrajectoryPoint
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more