#[repr(u32)]pub enum OcrEngineMode {
OEM_TESSERACT_ONLY = 0,
OEM_LSTM_ONLY = 1,
OEM_TESSERACT_LSTM_COMBINED = 2,
OEM_DEFAULT = 3,
OEM_COUNT = 4,
}Variants§
OEM_TESSERACT_ONLY = 0
OEM_LSTM_ONLY = 1
OEM_TESSERACT_LSTM_COMBINED = 2
OEM_DEFAULT = 3
OEM_COUNT = 4
Trait Implementations§
Source§impl Clone for OcrEngineMode
impl Clone for OcrEngineMode
Source§fn clone(&self) -> OcrEngineMode
fn clone(&self) -> OcrEngineMode
Returns a copy 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 OcrEngineMode
impl Debug for OcrEngineMode
Source§impl Hash for OcrEngineMode
impl Hash for OcrEngineMode
Source§impl PartialEq for OcrEngineMode
impl PartialEq for OcrEngineMode
impl Copy for OcrEngineMode
impl Eq for OcrEngineMode
impl StructuralPartialEq for OcrEngineMode
Auto Trait Implementations§
impl Freeze for OcrEngineMode
impl RefUnwindSafe for OcrEngineMode
impl Send for OcrEngineMode
impl Sync for OcrEngineMode
impl Unpin for OcrEngineMode
impl UnwindSafe for OcrEngineMode
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