#[repr(C)]pub struct fz_document_handler {
pub recognize: fz_document_recognize_fn,
pub open: fz_document_open_fn,
pub extensions: *mut *const c_char,
pub mimetypes: *mut *const c_char,
pub recognize_content: fz_document_recognize_content_fn,
pub wants_dir: c_int,
pub wants_file: c_int,
pub fin: fz_document_handler_fin_fn,
}
Fields§
§recognize: fz_document_recognize_fn
§open: fz_document_open_fn
§extensions: *mut *const c_char
§mimetypes: *mut *const c_char
§recognize_content: fz_document_recognize_content_fn
§wants_dir: c_int
§wants_file: c_int
§fin: fz_document_handler_fin_fn
Trait Implementations§
Source§impl Clone for fz_document_handler
impl Clone for fz_document_handler
Source§fn clone(&self) -> fz_document_handler
fn clone(&self) -> fz_document_handler
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for fz_document_handler
impl Debug for fz_document_handler
impl Copy for fz_document_handler
Auto Trait Implementations§
impl Freeze for fz_document_handler
impl RefUnwindSafe for fz_document_handler
impl !Send for fz_document_handler
impl !Sync for fz_document_handler
impl Unpin for fz_document_handler
impl UnwindSafe for fz_document_handler
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