[][src]Struct mupdf_sys::fz_output

#[repr(C)]pub struct fz_output {
    pub state: *mut c_void,
    pub write: fz_output_write_fn,
    pub seek: fz_output_seek_fn,
    pub tell: fz_output_tell_fn,
    pub close: fz_output_close_fn,
    pub drop: fz_output_drop_fn,
    pub as_stream: fz_stream_from_output_fn,
    pub truncate: fz_truncate_fn,
    pub bp: *mut c_char,
    pub wp: *mut c_char,
    pub ep: *mut c_char,
}

Fields

state: *mut c_voidwrite: fz_output_write_fnseek: fz_output_seek_fntell: fz_output_tell_fnclose: fz_output_close_fndrop: fz_output_drop_fnas_stream: fz_stream_from_output_fntruncate: fz_truncate_fnbp: *mut c_charwp: *mut c_charep: *mut c_char

Trait Implementations

impl Clone for fz_output[src]

impl Copy for fz_output[src]

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