pub enum Message {
BodyQuaternions(BodyQuaternionFrame),
BodyLandmarks(BodyLandmarkFrame),
HandQuaternions {
side: HandSide,
frame: HandQuaternionFrame,
},
HandLandmarks {
side: HandSide,
frame: HandLandmarkFrame,
},
BodyIsbAngles(BodyIsbAnglesFrame),
}Expand description
One decoded message from the Zendo stream.
Variants§
BodyQuaternions(BodyQuaternionFrame)
Body-joint orientations (0x02).
BodyLandmarks(BodyLandmarkFrame)
Body-landmark positions (0x03).
HandQuaternions
Hand-joint orientations for one hand (0x04).
HandLandmarks
Hand-landmark positions for one hand (0x05).
BodyIsbAngles(BodyIsbAnglesFrame)
Body ISB joint angles in radians (0x06).
Trait Implementations§
impl Copy for Message
impl StructuralPartialEq for Message
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnsafeUnpin for Message
impl UnwindSafe for Message
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