pub struct Hand<J> {
pub wrist: Option<J>,
pub thumb_metacarpal: Option<J>,
pub thumb_phalanx_proximal: Option<J>,
pub thumb_phalanx_distal: Option<J>,
pub thumb_phalanx_tip: Option<J>,
pub index: Finger<J>,
pub middle: Finger<J>,
pub ring: Finger<J>,
pub little: Finger<J>,
}
Fields§
§wrist: Option<J>
§thumb_metacarpal: Option<J>
§thumb_phalanx_proximal: Option<J>
§thumb_phalanx_distal: Option<J>
§thumb_phalanx_tip: Option<J>
§index: Finger<J>
§middle: Finger<J>
§ring: Finger<J>
§little: Finger<J>
Implementations§
Trait Implementations§
source§impl<'de, J> Deserialize<'de> for Hand<J>where
J: Deserialize<'de>,
impl<'de, J> Deserialize<'de> for Hand<J>where
J: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<J> Freeze for Hand<J>where
J: Freeze,
impl<J> RefUnwindSafe for Hand<J>where
J: RefUnwindSafe,
impl<J> Send for Hand<J>where
J: Send,
impl<J> Sync for Hand<J>where
J: Sync,
impl<J> Unpin for Hand<J>where
J: Unpin,
impl<J> UnwindSafe for Hand<J>where
J: UnwindSafe,
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