pub struct RobotState {
Show 14 fields pub joint_positions_d: Vector7, pub joint_positions: Vector7, pub joint_velocities: Vector7, pub joint_velocities_d: Vector7, pub joint_torques: Vector7, pub end_effector_pose_c: Isometry3<f64>, pub end_effector_pose: Isometry3<f64>, pub end_effector_pose_d: Isometry3<f64>, pub end_effector_velocity_d: Vector6<f64>, pub jacobian: Matrix6x7, pub mass_matrix: Matrix7, pub coriolis: Vector7, pub gravity: Vector7, pub control_command_success_rate: f64,
}
Expand description

Describes the State of the Robot at a certain point in time.

Fields

joint_positions_d: Vector7

desired join positions

joint_positions: Vector7

measured joint positions

joint_velocities: Vector7

measured joint velocities

joint_velocities_d: Vector7

desired joint velocities

joint_torques: Vector7

measured joint torques

end_effector_pose_c: Isometry3<f64>

command end-effector pose. Use it cartesian pose control

end_effector_pose: Isometry3<f64>

measured end-effector pose.

end_effector_pose_d: Isometry3<f64>

desired end-effector pose

end_effector_velocity_d: Vector6<f64>

desired end-effector velocity (linear,angular)

jacobian: Matrix6x7

Jacobian at the current configuration

mass_matrix: Matrix7

Mass matrix at the current configuration

coriolis: Vector7

Coriolis torques at the current configuration

gravity: Vector7

Gravity torques at the current configuration

control_command_success_rate: f64

Percentage of the last 100 robot commands that the robot successfully received

Trait Implementations

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

Checks if self is actually part of its subset T (and can be converted to it).

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

The inclusion map: converts self to the equivalent element of its superset.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.