#[repr(C)]pub struct fz_pdfocr_options {
pub compress: c_int,
pub strip_height: c_int,
pub language: [c_char; 256],
pub datadir: [c_char; 1024],
pub skew_correct: c_int,
pub skew_angle: f32,
pub skew_border: c_int,
pub page_count: c_int,
pub options: *mut c_char,
}Expand description
PDFOCR output
Fields§
§compress: c_int§strip_height: c_int§language: [c_char; 256]§datadir: [c_char; 1024]§skew_correct: c_int§skew_angle: f32§skew_border: c_int§page_count: c_int§options: *mut c_charTrait Implementations§
Source§impl Clone for fz_pdfocr_options
impl Clone for fz_pdfocr_options
Source§fn clone(&self) -> fz_pdfocr_options
fn clone(&self) -> fz_pdfocr_options
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 fz_pdfocr_options
impl Debug for fz_pdfocr_options
impl Copy for fz_pdfocr_options
Auto Trait Implementations§
impl Freeze for fz_pdfocr_options
impl RefUnwindSafe for fz_pdfocr_options
impl !Send for fz_pdfocr_options
impl !Sync for fz_pdfocr_options
impl Unpin for fz_pdfocr_options
impl UnwindSafe for fz_pdfocr_options
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