Struct mupdf_sys::fz_stream[][src]

#[repr(C)]pub struct fz_stream {
    pub refs: c_int,
    pub error: c_int,
    pub eof: c_int,
    pub progressive: c_int,
    pub pos: i64,
    pub avail: c_int,
    pub bits: c_int,
    pub rp: *mut c_uchar,
    pub wp: *mut c_uchar,
    pub state: *mut c_void,
    pub next: fz_stream_next_fn,
    pub drop: fz_stream_drop_fn,
    pub seek: fz_stream_seek_fn,
}

Fields

refs: c_interror: c_inteof: c_intprogressive: c_intpos: i64avail: c_intbits: c_intrp: *mut c_ucharwp: *mut c_ucharstate: *mut c_voidnext: fz_stream_next_fndrop: fz_stream_drop_fnseek: fz_stream_seek_fn

Trait Implementations

impl Clone for fz_stream[src]

impl Copy for fz_stream[src]

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