pub struct Finger<J> {
pub metacarpal: Option<J>,
pub phalanx_proximal: Option<J>,
pub phalanx_intermediate: Option<J>,
pub phalanx_distal: Option<J>,
pub phalanx_tip: Option<J>,
}
Fields§
§metacarpal: Option<J>
§phalanx_proximal: Option<J>
§phalanx_intermediate: Option<J>
§phalanx_distal: Option<J>
§phalanx_tip: Option<J>
Implementations§
Trait Implementations§
source§impl<'de, J> Deserialize<'de> for Finger<J>where
J: Deserialize<'de>,
impl<'de, J> Deserialize<'de> for Finger<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 Finger<J>where
J: Freeze,
impl<J> RefUnwindSafe for Finger<J>where
J: RefUnwindSafe,
impl<J> Send for Finger<J>where
J: Send,
impl<J> Sync for Finger<J>where
J: Sync,
impl<J> Unpin for Finger<J>where
J: Unpin,
impl<J> UnwindSafe for Finger<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