Struct arci::DummyJointTrajectoryClient
source · pub struct DummyJointTrajectoryClient {
pub joint_names: Vec<String>,
pub positions: Arc<Mutex<Vec<f64>>>,
pub last_trajectory: Arc<Mutex<Vec<TrajectoryPoint>>>,
}
Expand description
Dummy JointTrajectoryClient for debug or tests.
Fields§
§joint_names: Vec<String>
§positions: Arc<Mutex<Vec<f64>>>
§last_trajectory: Arc<Mutex<Vec<TrajectoryPoint>>>
Implementations§
Trait Implementations§
source§impl Debug for DummyJointTrajectoryClient
impl Debug for DummyJointTrajectoryClient
source§impl JointTrajectoryClient for DummyJointTrajectoryClient
impl JointTrajectoryClient for DummyJointTrajectoryClient
source§fn joint_names(&self) -> Vec<String>
fn joint_names(&self) -> Vec<String>
Returns names of joints that this client handles.
source§fn current_joint_positions(&self) -> Result<Vec<f64>, Error>
fn current_joint_positions(&self) -> Result<Vec<f64>, Error>
Returns the current joint positions.
source§fn send_joint_positions(
&self,
positions: Vec<f64>,
_duration: Duration,
) -> Result<WaitFuture, Error>
fn send_joint_positions( &self, positions: Vec<f64>, _duration: Duration, ) -> Result<WaitFuture, Error>
Send the specified joint positions and returns a future that waits until
complete the move joints. Read more
source§fn send_joint_trajectory(
&self,
full_trajectory: Vec<TrajectoryPoint>,
) -> Result<WaitFuture, Error>
fn send_joint_trajectory( &self, full_trajectory: Vec<TrajectoryPoint>, ) -> Result<WaitFuture, Error>
Send the specified joint trajectory and returns a future that waits until
complete the move joints. Read more
Auto Trait Implementations§
impl Freeze for DummyJointTrajectoryClient
impl RefUnwindSafe for DummyJointTrajectoryClient
impl Send for DummyJointTrajectoryClient
impl Sync for DummyJointTrajectoryClient
impl Unpin for DummyJointTrajectoryClient
impl UnwindSafe for DummyJointTrajectoryClient
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moresource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.