Struct openrr_teleop::JointsPoseSender[][src]

pub struct JointsPoseSender<S, J> where
    S: Speaker,
    J: JointTrajectoryClient
{ /* fields omitted */ }

Implementations

impl<S, J> JointsPoseSender<S, J> where
    S: Speaker,
    J: JointTrajectoryClient
[src]

pub fn new(
    mode: String,
    joints_poses: Vec<JointsPose>,
    joint_trajectory_clients: HashMap<String, J>,
    speaker: S,
    duration: Duration
) -> Self
[src]

pub fn new_from_config(
    config: JointsPoseSenderConfig,
    joints_poses: Vec<JointsPose>,
    joint_trajectory_clients: HashMap<String, J>,
    speaker: S
) -> Self
[src]

Trait Implementations

impl<S, J> ControlNode for JointsPoseSender<S, J> where
    S: Speaker,
    J: JointTrajectoryClient
[src]

Auto Trait Implementations

impl<S, J> RefUnwindSafe for JointsPoseSender<S, J> where
    J: RefUnwindSafe,
    S: RefUnwindSafe

impl<S, J> Send for JointsPoseSender<S, J>

impl<S, J> Sync for JointsPoseSender<S, J>

impl<S, J> Unpin for JointsPoseSender<S, J> where
    J: Unpin,
    S: Unpin

impl<S, J> UnwindSafe for JointsPoseSender<S, J> where
    J: UnwindSafe,
    S: UnwindSafe

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>,