#[repr(i32)]pub enum ocr_engine_mode {
OEM_TESSERACT_ONLY = 0,
OEM_CUBE_ONLY = 1,
OEM_TESSERACT_CUBE_COMBINED = 2,
OEM_DEFAULT = 3,
}Expand description
Tesseract.OcrEngineMode Enumeration
Variants§
Trait Implementations§
Source§impl Clone for ocr_engine_mode
impl Clone for ocr_engine_mode
Source§fn clone(&self) -> ocr_engine_mode
fn clone(&self) -> ocr_engine_mode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ocr_engine_mode
impl Debug for ocr_engine_mode
Source§impl From<ocr_engine_mode> for i32
impl From<ocr_engine_mode> for i32
Source§fn from(v: ocr_engine_mode) -> Self
fn from(v: ocr_engine_mode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ocr_engine_mode
impl PartialEq for ocr_engine_mode
Source§impl TryFrom<i32> for ocr_engine_mode
impl TryFrom<i32> for ocr_engine_mode
impl Copy for ocr_engine_mode
impl Eq for ocr_engine_mode
impl StructuralPartialEq for ocr_engine_mode
Auto Trait Implementations§
impl Freeze for ocr_engine_mode
impl RefUnwindSafe for ocr_engine_mode
impl Send for ocr_engine_mode
impl Sync for ocr_engine_mode
impl Unpin for ocr_engine_mode
impl UnwindSafe for ocr_engine_mode
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