#[repr(C)]pub struct DetectedBarcodeRaw {
pub payload: *mut c_char,
pub symbology: *mut c_char,
pub confidence: f32,
pub bbox_x: f64,
pub bbox_y: f64,
pub bbox_w: f64,
pub bbox_h: f64,
}Expand description
Mirrors VNDetectedBarcodeRaw in the Swift bridge. Layout-compatible.
Fields§
§payload: *mut c_char§symbology: *mut c_char§confidence: f32§bbox_x: f64§bbox_y: f64§bbox_w: f64§bbox_h: f64Auto Trait Implementations§
impl Freeze for DetectedBarcodeRaw
impl RefUnwindSafe for DetectedBarcodeRaw
impl !Send for DetectedBarcodeRaw
impl !Sync for DetectedBarcodeRaw
impl Unpin for DetectedBarcodeRaw
impl UnsafeUnpin for DetectedBarcodeRaw
impl UnwindSafe for DetectedBarcodeRaw
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