Struct mupdf_sys::fz_context[][src]

#[repr(C)]pub struct fz_context {
    pub user: *mut c_void,
    pub alloc: fz_alloc_context,
    pub locks: fz_locks_context,
    pub error: fz_error_context,
    pub warn: fz_warn_context,
    pub aa: fz_aa_context,
    pub seed48: [u16; 7],
    pub icc_enabled: c_int,
    pub handler: *mut fz_document_handler_context,
    pub style: *mut fz_style_context,
    pub tuning: *mut fz_tuning_context,
    pub font: *mut fz_font_context,
    pub colorspace: *mut fz_colorspace_context,
    pub store: *mut fz_store,
    pub glyph_cache: *mut fz_glyph_cache,
}

Fields

user: *mut c_voidalloc: fz_alloc_contextlocks: fz_locks_contexterror: fz_error_contextwarn: fz_warn_contextaa: fz_aa_contextseed48: [u16; 7]icc_enabled: c_inthandler: *mut fz_document_handler_contextstyle: *mut fz_style_contexttuning: *mut fz_tuning_contextfont: *mut fz_font_contextcolorspace: *mut fz_colorspace_contextstore: *mut fz_storeglyph_cache: *mut fz_glyph_cache

Trait Implementations

impl Clone for fz_context[src]

impl Copy for fz_context[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.