#[repr(C)]pub struct PoseObservationRaw {
pub bbox_x: f64,
pub bbox_y: f64,
pub bbox_w: f64,
pub bbox_h: f64,
pub confidence: f32,
pub joint_names: *mut *mut c_char,
pub joint_xs: *mut f64,
pub joint_ys: *mut f64,
pub joint_confidences: *mut f32,
pub joint_count: usize,
}Expand description
Mirrors VNPoseObservationRaw in the Swift bridge. Layout-compatible.
Fields§
§bbox_x: f64§bbox_y: f64§bbox_w: f64§bbox_h: f64§confidence: f32§joint_names: *mut *mut c_char§joint_xs: *mut f64§joint_ys: *mut f64§joint_confidences: *mut f32§joint_count: usizeAuto Trait Implementations§
impl Freeze for PoseObservationRaw
impl RefUnwindSafe for PoseObservationRaw
impl !Send for PoseObservationRaw
impl !Sync for PoseObservationRaw
impl Unpin for PoseObservationRaw
impl UnsafeUnpin for PoseObservationRaw
impl UnwindSafe for PoseObservationRaw
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