Struct php_all_sys::php56::_php_stream[][src]

#[repr(C)]pub struct _php_stream {
    pub ops: *mut php_stream_ops,
    pub abstract_: *mut c_void,
    pub readfilters: php_stream_filter_chain,
    pub writefilters: php_stream_filter_chain,
    pub wrapper: *mut php_stream_wrapper,
    pub wrapperthis: *mut c_void,
    pub wrapperdata: *mut zval,
    pub fgetss_state: c_int,
    pub is_persistent: c_int,
    pub mode: [c_char; 16],
    pub rsrc_id: c_int,
    pub in_free: c_int,
    pub fclose_stdiocast: c_int,
    pub stdiocast: *mut FILE,
    pub orig_path: *mut c_char,
    pub context: *mut php_stream_context,
    pub flags: c_int,
    pub position: off_t,
    pub readbuf: *mut c_uchar,
    pub readbuflen: size_t,
    pub readpos: off_t,
    pub writepos: off_t,
    pub chunk_size: size_t,
    pub eof: c_int,
    pub enclosing_stream: *mut _php_stream,
}

Fields

ops: *mut php_stream_opsabstract_: *mut c_voidreadfilters: php_stream_filter_chainwritefilters: php_stream_filter_chainwrapper: *mut php_stream_wrapperwrapperthis: *mut c_voidwrapperdata: *mut zvalfgetss_state: c_intis_persistent: c_intmode: [c_char; 16]rsrc_id: c_intin_free: c_intfclose_stdiocast: c_intstdiocast: *mut FILEorig_path: *mut c_charcontext: *mut php_stream_contextflags: c_intposition: off_treadbuf: *mut c_ucharreadbuflen: size_treadpos: off_twritepos: off_tchunk_size: size_teof: c_intenclosing_stream: *mut _php_stream

Trait Implementations

impl Clone for _php_stream[src]

impl Copy for _php_stream[src]

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