#[repr(C)]pub struct control_msgs__msg__JointControllerState {
pub header: std_msgs__msg__Header,
pub set_point: f64,
pub process_value: f64,
pub process_value_dot: f64,
pub error: f64,
pub time_step: f64,
pub command: f64,
pub p: f64,
pub i: f64,
pub d: f64,
pub i_clamp: f64,
pub antiwindup: bool,
}
Fields§
§header: std_msgs__msg__Header
§set_point: f64
§process_value: f64
§process_value_dot: f64
§error: f64
§time_step: f64
§command: f64
§p: f64
§i: f64
§d: f64
§i_clamp: f64
§antiwindup: bool
Auto Trait Implementations§
impl Freeze for control_msgs__msg__JointControllerState
impl RefUnwindSafe for control_msgs__msg__JointControllerState
impl !Send for control_msgs__msg__JointControllerState
impl !Sync for control_msgs__msg__JointControllerState
impl Unpin for control_msgs__msg__JointControllerState
impl UnwindSafe for control_msgs__msg__JointControllerState
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more