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