Struct mupdf_sys::fz_pcl_options[][src]

#[repr(C)]pub struct fz_pcl_options {
    pub features: c_int,
    pub odd_page_init: *const c_char,
    pub even_page_init: *const c_char,
    pub tumble: c_int,
    pub duplex_set: c_int,
    pub duplex: c_int,
    pub paper_size: c_int,
    pub manual_feed_set: c_int,
    pub manual_feed: c_int,
    pub media_position_set: c_int,
    pub media_position: c_int,
    pub orientation: c_int,
    pub page_count: c_int,
}

PCL output

Fields

features: c_intodd_page_init: *const c_chareven_page_init: *const c_chartumble: c_intduplex_set: c_intduplex: c_intpaper_size: c_intmanual_feed_set: c_intmanual_feed: c_intmedia_position_set: c_intmedia_position: c_intorientation: c_intpage_count: c_int

Trait Implementations

impl Clone for fz_pcl_options[src]

impl Copy for fz_pcl_options[src]

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