Struct arci_ros::RosControlClientConfig[][src]

pub struct RosControlClientConfig {
    pub name: String,
    pub joint_names: Vec<String>,
    pub wrap_with_joint_velocity_limiter: bool,
    pub joint_velocity_limits: Vec<f64>,
    pub controller_name: String,
    pub state_topic_name: Option<String>,
    pub send_partial_joints_goal: bool,
    pub complete_allowable_errors: Vec<f64>,
    pub complete_timeout_sec: f64,
}

Fields

name: Stringjoint_names: Vec<String>wrap_with_joint_velocity_limiter: booljoint_velocity_limits: Vec<f64>controller_name: Stringstate_topic_name: Option<String>send_partial_joints_goal: boolcomplete_allowable_errors: Vec<f64>complete_timeout_sec: f64

Trait Implementations

impl Clone for RosControlClientConfig[src]

impl Debug for RosControlClientConfig[src]

impl<'de> Deserialize<'de> for RosControlClientConfig[src]

impl Serialize for RosControlClientConfig[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<T> Typeable for T where
    T: Any