Struct mupdf_sys::pdf_write_options[][src]

#[repr(C)]pub struct pdf_write_options {
    pub do_incremental: c_int,
    pub do_pretty: c_int,
    pub do_ascii: c_int,
    pub do_compress: c_int,
    pub do_compress_images: c_int,
    pub do_compress_fonts: c_int,
    pub do_decompress: c_int,
    pub do_garbage: c_int,
    pub do_linear: c_int,
    pub do_clean: c_int,
    pub do_sanitize: c_int,
    pub do_appearance: c_int,
    pub do_encrypt: c_int,
    pub permissions: c_int,
    pub opwd_utf8: [c_char; 128],
    pub upwd_utf8: [c_char; 128],
}

Fields

do_incremental: c_intdo_pretty: c_intdo_ascii: c_intdo_compress: c_intdo_compress_images: c_intdo_compress_fonts: c_intdo_decompress: c_intdo_garbage: c_intdo_linear: c_intdo_clean: c_intdo_sanitize: c_intdo_appearance: c_intdo_encrypt: c_intpermissions: c_intopwd_utf8: [c_char; 128]upwd_utf8: [c_char; 128]

Trait Implementations

impl Clone for pdf_write_options[src]

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