pub struct VisionDetectedPoint {
pub location: VisionPoint,
pub confidence: f32,
}Expand description
A dedicated VNDetectedPoint wrapper.
Fields§
§location: VisionPoint§confidence: f32Implementations§
Trait Implementations§
Source§impl Clone for VisionDetectedPoint
impl Clone for VisionDetectedPoint
Source§fn clone(&self) -> VisionDetectedPoint
fn clone(&self) -> VisionDetectedPoint
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 VisionDetectedPoint
impl Debug for VisionDetectedPoint
Source§impl PartialEq for VisionDetectedPoint
impl PartialEq for VisionDetectedPoint
Source§fn eq(&self, other: &VisionDetectedPoint) -> bool
fn eq(&self, other: &VisionDetectedPoint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for VisionDetectedPoint
impl StructuralPartialEq for VisionDetectedPoint
Auto Trait Implementations§
impl Freeze for VisionDetectedPoint
impl RefUnwindSafe for VisionDetectedPoint
impl Send for VisionDetectedPoint
impl Sync for VisionDetectedPoint
impl Unpin for VisionDetectedPoint
impl UnsafeUnpin for VisionDetectedPoint
impl UnwindSafe for VisionDetectedPoint
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