Struct openrr_client::RobotClient[][src]

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

Implementations

impl<L, M, N> RobotClient<L, M, N> where
    L: Localization,
    M: MoveBase,
    N: Navigation
[src]

pub fn try_new(
    config: OpenrrClientsConfig,
    raw_joint_trajectory_clients: HashMap<String, Arc<dyn JointTrajectoryClient>>,
    speakers: HashMap<String, Arc<dyn Speaker>>,
    localization: Option<L>,
    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]

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

pub fn speak(&self, name: &str, message: &str)[src]

Trait Implementations

impl<L, M, N> Localization for RobotClient<L, M, N> where
    L: Localization,
    M: MoveBase,
    N: Navigation
[src]

impl<L, M, N> MoveBase for RobotClient<L, M, N> where
    L: Localization,
    M: MoveBase,
    N: Navigation
[src]

impl<L, M, N> Navigation for RobotClient<L, M, N> where
    L: Localization,
    M: MoveBase,
    N: Navigation
[src]

Auto Trait Implementations

impl<L, M, N> !RefUnwindSafe for RobotClient<L, M, N>

impl<L, M, N> Send for RobotClient<L, M, N>

impl<L, M, N> Sync for RobotClient<L, M, N>

impl<L, M, N> Unpin for RobotClient<L, M, N> where
    L: Unpin,
    M: Unpin,
    N: Unpin

impl<L, M, N> !UnwindSafe for RobotClient<L, M, N>

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: Any + Send + Sync

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

impl<T> Instrument 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>,