pub struct EndPoseFeedback2 {
pub z_mm: i32,
pub rx_deg: i32,
}Expand description
机械臂末端位姿反馈2 (0x2A3)
包含 Z 坐标和 RX 角度反馈。 单位:Z 为 0.001mm(原始值),RX 为 0.001°(原始值)。
Fields§
§z_mm: i32§rx_deg: i32Implementations§
Trait Implementations§
Source§impl Clone for EndPoseFeedback2
impl Clone for EndPoseFeedback2
Source§fn clone(&self) -> EndPoseFeedback2
fn clone(&self) -> EndPoseFeedback2
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 EndPoseFeedback2
impl Debug for EndPoseFeedback2
Source§impl Default for EndPoseFeedback2
impl Default for EndPoseFeedback2
Source§fn default() -> EndPoseFeedback2
fn default() -> EndPoseFeedback2
Returns the “default value” for a type. Read more
Source§impl TryFrom<PiperFrame> for EndPoseFeedback2
impl TryFrom<PiperFrame> for EndPoseFeedback2
Source§type Error = ProtocolError
type Error = ProtocolError
The type returned in the event of a conversion error.
Source§fn try_from(
frame: PiperFrame,
) -> Result<EndPoseFeedback2, <EndPoseFeedback2 as TryFrom<PiperFrame>>::Error>
fn try_from( frame: PiperFrame, ) -> Result<EndPoseFeedback2, <EndPoseFeedback2 as TryFrom<PiperFrame>>::Error>
Performs the conversion.
impl Copy for EndPoseFeedback2
Auto Trait Implementations§
impl Freeze for EndPoseFeedback2
impl RefUnwindSafe for EndPoseFeedback2
impl Send for EndPoseFeedback2
impl Sync for EndPoseFeedback2
impl Unpin for EndPoseFeedback2
impl UnwindSafe for EndPoseFeedback2
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