Struct mupdf_sys::fz_document_handler[][src]

#[repr(C)]pub struct fz_document_handler {
    pub recognize: fz_document_recognize_fn,
    pub open: fz_document_open_fn,
    pub open_with_stream: fz_document_open_with_stream_fn,
    pub extensions: *mut *const c_char,
    pub mimetypes: *mut *const c_char,
    pub open_accel: fz_document_open_accel_fn,
    pub open_accel_with_stream: fz_document_open_accel_with_stream_fn,
}

Fields

recognize: fz_document_recognize_fnopen: fz_document_open_fnopen_with_stream: fz_document_open_with_stream_fnextensions: *mut *const c_charmimetypes: *mut *const c_charopen_accel: fz_document_open_accel_fnopen_accel_with_stream: fz_document_open_accel_with_stream_fn

Trait Implementations

impl Clone for fz_document_handler[src]

impl Copy for fz_document_handler[src]

impl Debug for fz_document_handler[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.