pub struct TextSpan {
pub text: String,
pub confidence: f32,
pub bbox: PxRect,
}Expand description
One recognized text region. bbox is relative to the evaluated view.
Fields§
§text: String§confidence: f32Mean character confidence in 0.0..=1.0. Never NaN.
bbox: PxRectTrait Implementations§
impl StructuralPartialEq for TextSpan
Auto Trait Implementations§
impl Freeze for TextSpan
impl RefUnwindSafe for TextSpan
impl Send for TextSpan
impl Sync for TextSpan
impl Unpin for TextSpan
impl UnsafeUnpin for TextSpan
impl UnwindSafe for TextSpan
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