pub struct Keypoint {
pub x: f64,
pub y: f64,
pub z: Option<f64>,
pub score: Option<f64>,
pub name: Option<String>,
}
Fields§
§x: f64
§y: f64
§z: Option<f64>
§score: Option<f64>
§name: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Keypoint
impl<'de> Deserialize<'de> for Keypoint
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 Freeze for Keypoint
impl RefUnwindSafe for Keypoint
impl Send for Keypoint
impl Sync for Keypoint
impl Unpin for Keypoint
impl UnwindSafe for Keypoint
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