Struct mupdf_sys::pdf_cmap[][src]

#[repr(C)]pub struct pdf_cmap {
    pub storable: fz_storable,
    pub cmap_name: [c_char; 32],
    pub usecmap_name: [c_char; 32],
    pub usecmap: *mut pdf_cmap,
    pub wmode: c_int,
    pub codespace_len: c_int,
    pub codespace: [pdf_cmap__bindgen_ty_1; 40],
    pub rlen: c_int,
    pub rcap: c_int,
    pub ranges: *mut pdf_range,
    pub xlen: c_int,
    pub xcap: c_int,
    pub xranges: *mut pdf_xrange,
    pub mlen: c_int,
    pub mcap: c_int,
    pub mranges: *mut pdf_mrange,
    pub dlen: c_int,
    pub dcap: c_int,
    pub dict: *mut c_int,
    pub tlen: c_int,
    pub tcap: c_int,
    pub ttop: c_int,
    pub tree: *mut cmap_splay,
}

Fields

storable: fz_storablecmap_name: [c_char; 32]usecmap_name: [c_char; 32]usecmap: *mut pdf_cmapwmode: c_intcodespace_len: c_intcodespace: [pdf_cmap__bindgen_ty_1; 40]rlen: c_intrcap: c_intranges: *mut pdf_rangexlen: c_intxcap: c_intxranges: *mut pdf_xrangemlen: c_intmcap: c_intmranges: *mut pdf_mrangedlen: c_intdcap: c_intdict: *mut c_inttlen: c_inttcap: c_intttop: c_inttree: *mut cmap_splay

Trait Implementations

impl Clone for pdf_cmap[src]

impl Copy for pdf_cmap[src]

Auto Trait Implementations

impl RefUnwindSafe for pdf_cmap

impl !Send for pdf_cmap

impl !Sync for pdf_cmap

impl Unpin for pdf_cmap

impl UnwindSafe for pdf_cmap

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.