Struct mupdf_sys::fz_document_writer[][src]

#[repr(C)]pub struct fz_document_writer {
    pub begin_page: fz_document_writer_begin_page_fn,
    pub end_page: fz_document_writer_end_page_fn,
    pub close_writer: fz_document_writer_close_writer_fn,
    pub drop_writer: fz_document_writer_drop_writer_fn,
    pub dev: *mut fz_device,
}

Structure is public to allow other structures to be derived from it. Do not access members directly.

Fields

begin_page: fz_document_writer_begin_page_fnend_page: fz_document_writer_end_page_fnclose_writer: fz_document_writer_close_writer_fndrop_writer: fz_document_writer_drop_writer_fndev: *mut fz_device

Trait Implementations

impl Clone for fz_document_writer[src]

impl Copy for fz_document_writer[src]

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