pub struct TextChar {
pub char: char,
pub rect: Rect,
}Expand description
Details of a single character that was recognized.
Fields§
§char: charCharacter that was recognized.
rect: RectApproximate bounding rectangle of character in input image.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for TextChar
impl Send for TextChar
impl Sync for TextChar
impl Unpin for TextChar
impl UnwindSafe for TextChar
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