pub struct Landmark {
pub x: f64,
pub y: f64,
pub z: f64,
pub confidence: f64,
}Expand description
A 3D landmark position with a detection confidence in [0, 1].
Fields§
§x: f64§y: f64§z: f64§confidence: f64Trait Implementations§
impl Copy for Landmark
impl StructuralPartialEq for Landmark
Auto Trait Implementations§
impl Freeze for Landmark
impl RefUnwindSafe for Landmark
impl Send for Landmark
impl Sync for Landmark
impl Unpin for Landmark
impl UnsafeUnpin for Landmark
impl UnwindSafe for Landmark
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