Struct openrr_client::RobotClient[][src]

pub struct RobotClient<S, M, N> where
    S: Speaker,
    M: MoveBase,
    N: Navigation
{ /* fields omitted */ }

Implementations

impl<S, M, N> RobotClient<S, M, N> where
    S: Speaker,
    M: MoveBase,
    N: Navigation
[src]

pub fn try_new(
    config: OpenrrClientsConfig,
    raw_joint_trajectory_clients: HashMap<String, Arc<dyn JointTrajectoryClient>>,
    speaker: S,
    move_base: Option<M>,
    navigation: Option<N>
) -> Result<Self, Error>
[src]

pub fn set_raw_clients_joint_positions_to_full_chain_for_collision_checker(
    &self
) -> Result<(), Error>
[src]

pub fn is_raw_joint_trajectory_client(&self, name: &str) -> bool[src]

pub fn is_joint_trajectory_client(&self, name: &str) -> bool[src]

pub fn is_collision_check_client(&self, name: &str) -> bool[src]

pub fn is_ik_client(&self, name: &str) -> bool[src]

pub fn joint_trajectory_clients(
    &self
) -> &HashMap<String, Arc<dyn JointTrajectoryClient>>
[src]

pub fn self_collision_checkers(
    &self
) -> &HashMap<String, Arc<SelfCollisionChecker>>
[src]

pub fn ik_solvers(&self) -> &HashMap<String, Arc<IkSolverWithChain>>[src]

pub fn ik_clients(
    &self
) -> &HashMap<String, Arc<IkClient<Arc<dyn JointTrajectoryClient>>>>
[src]

pub async fn send_joint_positions(
    &self,
    name: &str,
    positions: &[f64],
    duration_sec: f64
) -> Result<(), Error>
[src]

pub async fn current_joint_positions(
    &self,
    name: &str
) -> Result<Vec<f64>, Error>
[src]

pub async fn send_joints_pose(
    &self,
    name: &str,
    pose_name: &str,
    duration_sec: f64
) -> Result<(), Error>
[src]

pub async fn current_end_transform(
    &self,
    name: &str
) -> Result<Isometry3<f64>, Error>
[src]

pub async fn transform(
    &self,
    name: &str,
    pose: &Isometry3<f64>
) -> Result<Isometry3<f64>, Error>
[src]

pub async fn move_ik(
    &self,
    name: &str,
    target_pose: &Isometry3<f64>,
    duration_sec: f64
) -> Result<(), Error>
[src]

pub async fn move_ik_with_interpolation(
    &self,
    name: &str,
    target_pose: &Isometry3<f64>,
    duration_sec: f64
) -> Result<(), Error>
[src]

pub async fn send_joint_positions_with_pose_interpolation(
    &self,
    name: &str,
    positions: &[f64],
    duration_sec: f64
) -> Result<(), Error>
[src]

pub fn raw_joint_trajectory_clients_names(&self) -> Vec<String>[src]

pub fn joint_trajectory_clients_names(&self) -> Vec<String>[src]

pub fn collision_check_clients_names(&self) -> Vec<String>[src]

pub fn ik_clients_names(&self) -> Vec<String>[src]

pub fn full_chain_for_collision_checker(&self) -> &Option<Arc<Chain<f64>>>[src]

Trait Implementations

impl<S, M, N> MoveBase for RobotClient<S, M, N> where
    S: Speaker,
    M: MoveBase,
    N: Navigation
[src]

impl<S, M, N> Navigation for RobotClient<S, M, N> where
    S: Speaker,
    M: MoveBase,
    N: Navigation
[src]

impl<S, M, N> Speaker for RobotClient<S, M, N> where
    S: Speaker,
    M: MoveBase,
    N: Navigation
[src]

Auto Trait Implementations

impl<S, M, N> !RefUnwindSafe for RobotClient<S, M, N>[src]

impl<S, M, N> Send for RobotClient<S, M, N>[src]

impl<S, M, N> Sync for RobotClient<S, M, N>[src]

impl<S, M, N> Unpin for RobotClient<S, M, N> where
    M: Unpin,
    N: Unpin,
    S: Unpin
[src]

impl<S, M, N> !UnwindSafe for RobotClient<S, M, N>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,