Struct mupdf_sys::pdf_csi[][src]

#[repr(C)]pub struct pdf_csi {
    pub doc: *mut pdf_document,
    pub rdb: *mut pdf_obj,
    pub buf: *mut pdf_lexbuf,
    pub cookie: *mut fz_cookie,
    pub gstate: c_int,
    pub xbalance: c_int,
    pub in_text: c_int,
    pub d1_rect: fz_rect,
    pub obj: *mut pdf_obj,
    pub name: [c_char; 256],
    pub string: [c_char; 256],
    pub string_len: usize,
    pub top: c_int,
    pub stack: [f32; 32],
}

Fields

doc: *mut pdf_documentrdb: *mut pdf_objbuf: *mut pdf_lexbufcookie: *mut fz_cookiegstate: c_intxbalance: c_intin_text: c_intd1_rect: fz_rectobj: *mut pdf_objname: [c_char; 256]string: [c_char; 256]string_len: usizetop: c_intstack: [f32; 32]

Trait Implementations

impl Clone for pdf_csi[src]

impl Copy for pdf_csi[src]

Auto Trait Implementations

impl RefUnwindSafe for pdf_csi

impl !Send for pdf_csi

impl !Sync for pdf_csi

impl Unpin for pdf_csi

impl UnwindSafe for pdf_csi

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.