pub struct GripperControlFeedback {
pub travel_mm: i32,
pub torque_nm: i16,
pub status_code: u8,
pub set_zero: u8,
}Expand description
主从模式夹爪控制指令反馈 (0x159)
在主从模式下,示教输入臂会发送夹爪控制指令给运动输出臂。
Fields§
§travel_mm: i32§torque_nm: i16§status_code: u8§set_zero: u8Trait Implementations§
Source§impl Clone for GripperControlFeedback
impl Clone for GripperControlFeedback
Source§fn clone(&self) -> GripperControlFeedback
fn clone(&self) -> GripperControlFeedback
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 GripperControlFeedback
impl Debug for GripperControlFeedback
Source§impl Default for GripperControlFeedback
impl Default for GripperControlFeedback
Source§fn default() -> GripperControlFeedback
fn default() -> GripperControlFeedback
Returns the “default value” for a type. Read more
Source§impl TryFrom<PiperFrame> for GripperControlFeedback
impl TryFrom<PiperFrame> for GripperControlFeedback
Source§type Error = ProtocolError
type Error = ProtocolError
The type returned in the event of a conversion error.
impl Copy for GripperControlFeedback
Auto Trait Implementations§
impl Freeze for GripperControlFeedback
impl RefUnwindSafe for GripperControlFeedback
impl Send for GripperControlFeedback
impl Sync for GripperControlFeedback
impl Unpin for GripperControlFeedback
impl UnwindSafe for GripperControlFeedback
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