#[repr(C)]pub struct DetectedFaceRaw {
pub bbox_x: f64,
pub bbox_y: f64,
pub bbox_w: f64,
pub bbox_h: f64,
pub confidence: f32,
pub roll: f32,
pub yaw: f32,
pub pitch: f32,
}Expand description
Mirrors VNDetectedFaceRaw in the Swift bridge. Layout-compatible.
Fields§
§bbox_x: f64§bbox_y: f64§bbox_w: f64§bbox_h: f64§confidence: f32§roll: f32§yaw: f32§pitch: f32Auto Trait Implementations§
impl Freeze for DetectedFaceRaw
impl RefUnwindSafe for DetectedFaceRaw
impl Send for DetectedFaceRaw
impl Sync for DetectedFaceRaw
impl Unpin for DetectedFaceRaw
impl UnsafeUnpin for DetectedFaceRaw
impl UnwindSafe for DetectedFaceRaw
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