Struct arci::JointTrajectoryClientsContainer
source · pub struct JointTrajectoryClientsContainer<T: JointTrajectoryClient> { /* private fields */ }
Implementations§
source§impl<T> JointTrajectoryClientsContainer<T>where
T: JointTrajectoryClient,
impl<T> JointTrajectoryClientsContainer<T>where
T: JointTrajectoryClient,
Trait Implementations§
source§impl<T: Debug + JointTrajectoryClient> Debug for JointTrajectoryClientsContainer<T>
impl<T: Debug + JointTrajectoryClient> Debug for JointTrajectoryClientsContainer<T>
source§impl<T> JointTrajectoryClient for JointTrajectoryClientsContainer<T>where
T: JointTrajectoryClient + Sync,
impl<T> JointTrajectoryClient for JointTrajectoryClientsContainer<T>where
T: JointTrajectoryClient + Sync,
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<T> Freeze for JointTrajectoryClientsContainer<T>
impl<T> RefUnwindSafe for JointTrajectoryClientsContainer<T>where
T: RefUnwindSafe,
impl<T> Send for JointTrajectoryClientsContainer<T>
impl<T> Sync for JointTrajectoryClientsContainer<T>
impl<T> Unpin for JointTrajectoryClientsContainer<T>where
T: Unpin,
impl<T> UnwindSafe for JointTrajectoryClientsContainer<T>where
T: UnwindSafe,
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.