pub struct JointState {
pub header: Header,
pub name: Vec<String>,
pub position: Vec<f64>,
pub velocity: Vec<f64>,
pub effort: Vec<f64>,
}
Fields§
§header: Header
§name: Vec<String>
§position: Vec<f64>
§velocity: Vec<f64>
§effort: Vec<f64>
Trait Implementations§
Source§impl Clone for JointState
impl Clone for JointState
Source§fn clone(&self) -> JointState
fn clone(&self) -> JointState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for JointState
impl Debug for JointState
Source§impl Default for JointState
impl Default for JointState
Source§impl<'de> Deserialize<'de> for JointState
impl<'de> Deserialize<'de> for JointState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for JointState
impl PartialEq for JointState
Source§impl Serialize for JointState
impl Serialize for JointState
impl Message for JointState
impl StructuralPartialEq for JointState
Auto Trait Implementations§
impl Freeze for JointState
impl RefUnwindSafe for JointState
impl Send for JointState
impl Sync for JointState
impl Unpin for JointState
impl UnwindSafe for JointState
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