Struct pros_sys::vision::vision_object_s_t
source · #[repr(packed, C)]pub struct vision_object_s_t {
pub signature: u16,
pub type: vision_object_type_e_t,
pub left_coord: i16,
pub top_coord: i16,
pub width: i16,
pub height: i16,
pub angle: i16,
pub x_middle_coord: i16,
pub y_middle_coord: i16,
}Expand description
This structure contains a descriptor of an object detected by the Vision Sensor
Fields§
§signature: u16§type: vision_object_type_e_t§left_coord: i16§top_coord: i16§width: i16§height: i16§angle: i16§x_middle_coord: i16§y_middle_coord: i16Auto Trait Implementations§
impl RefUnwindSafe for vision_object_s_t
impl Send for vision_object_s_t
impl Sync for vision_object_s_t
impl Unpin for vision_object_s_t
impl UnwindSafe for vision_object_s_t
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