pub struct RecognizedPoint3D {
pub x: f32,
pub y: f32,
pub z: f32,
pub confidence: f32,
}Expand description
A single normalized VNRecognizedPoint3D / VNHumanBodyRecognizedPoint3D.
Fields§
§x: f32§y: f32§z: f32§confidence: f32Implementations§
Source§impl RecognizedPoint3D
impl RecognizedPoint3D
pub const fn point_3d(self) -> VisionPoint3D
Trait Implementations§
Source§impl Clone for RecognizedPoint3D
impl Clone for RecognizedPoint3D
Source§fn clone(&self) -> RecognizedPoint3D
fn clone(&self) -> RecognizedPoint3D
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RecognizedPoint3D
impl Debug for RecognizedPoint3D
Source§impl PartialEq for RecognizedPoint3D
impl PartialEq for RecognizedPoint3D
Source§fn eq(&self, other: &RecognizedPoint3D) -> bool
fn eq(&self, other: &RecognizedPoint3D) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for RecognizedPoint3D
impl StructuralPartialEq for RecognizedPoint3D
Auto Trait Implementations§
impl Freeze for RecognizedPoint3D
impl RefUnwindSafe for RecognizedPoint3D
impl Send for RecognizedPoint3D
impl Sync for RecognizedPoint3D
impl Unpin for RecognizedPoint3D
impl UnsafeUnpin for RecognizedPoint3D
impl UnwindSafe for RecognizedPoint3D
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