#[repr(C)]pub struct V5_DeviceAiVisionModelData {
pub xoffset: u16,
pub yoffset: u16,
pub width: u16,
pub height: u16,
pub score: u16,
}
Expand description
AI Model Data
Fields§
§xoffset: u16
left side of object
yoffset: u16
top of object
width: u16
width of object
height: u16
height of object
score: u16
confidence score
Trait Implementations§
Source§impl Clone for V5_DeviceAiVisionModelData
impl Clone for V5_DeviceAiVisionModelData
Source§fn clone(&self) -> V5_DeviceAiVisionModelData
fn clone(&self) -> V5_DeviceAiVisionModelData
Returns a copy of the value. Read more
1.0.0 · 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 V5_DeviceAiVisionModelData
impl Debug for V5_DeviceAiVisionModelData
Source§impl Default for V5_DeviceAiVisionModelData
impl Default for V5_DeviceAiVisionModelData
Source§fn default() -> V5_DeviceAiVisionModelData
fn default() -> V5_DeviceAiVisionModelData
Returns the “default value” for a type. Read more
impl Copy for V5_DeviceAiVisionModelData
impl StructuralPartialEq for V5_DeviceAiVisionModelData
Auto Trait Implementations§
impl Freeze for V5_DeviceAiVisionModelData
impl RefUnwindSafe for V5_DeviceAiVisionModelData
impl Send for V5_DeviceAiVisionModelData
impl Sync for V5_DeviceAiVisionModelData
impl Unpin for V5_DeviceAiVisionModelData
impl UnwindSafe for V5_DeviceAiVisionModelData
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