Struct mupdf_sys::pdf_annot[][src]

#[repr(C)]pub struct pdf_annot {
    pub refs: c_int,
    pub page: *mut pdf_page,
    pub obj: *mut pdf_obj,
    pub ap: *mut pdf_obj,
    pub is_hot: c_int,
    pub is_active: c_int,
    pub needs_new_ap: c_int,
    pub has_new_ap: c_int,
    pub ignore_trigger_events: c_int,
    pub next: *mut pdf_annot,
}

Fields

refs: c_intpage: *mut pdf_pageobj: *mut pdf_objap: *mut pdf_objis_hot: c_intis_active: c_intneeds_new_ap: c_inthas_new_ap: c_intignore_trigger_events: c_intnext: *mut pdf_annot

Trait Implementations

impl Clone for pdf_annot[src]

impl Copy for pdf_annot[src]

impl Debug for pdf_annot[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.