pub struct FpsCounts {Show 14 fields
pub joint_position: u64,
pub end_pose: u64,
pub joint_dynamic: u64,
pub robot_control: u64,
pub gripper: u64,
pub joint_driver_low_speed: u64,
pub collision_protection: u64,
pub joint_limit_config: u64,
pub joint_accel_config: u64,
pub end_limit_config: u64,
pub firmware_version: u64,
pub master_slave_control_mode: u64,
pub master_slave_joint_control: u64,
pub master_slave_gripper_control: u64,
}Expand description
FPS 计数器值
包含各状态的更新计数(原始值)。
Fields§
§joint_position: u64关节位置状态更新次数
end_pose: u64末端位姿状态更新次数
joint_dynamic: u64关节动态状态更新次数
robot_control: u64机器人控制状态更新次数
gripper: u64夹爪状态更新次数
joint_driver_low_speed: u64关节驱动器低速反馈状态更新次数
collision_protection: u64碰撞保护状态更新次数
joint_limit_config: u64关节限制配置状态更新次数
joint_accel_config: u64关节加速度限制配置状态更新次数
end_limit_config: u64末端限制配置状态更新次数
firmware_version: u64固件版本状态更新次数
master_slave_control_mode: u64主从模式控制模式指令状态更新次数
master_slave_joint_control: u64主从模式关节控制指令状态更新次数
master_slave_gripper_control: u64主从模式夹爪控制指令状态更新次数
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FpsCounts
impl RefUnwindSafe for FpsCounts
impl Send for FpsCounts
impl Sync for FpsCounts
impl Unpin for FpsCounts
impl UnwindSafe for FpsCounts
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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