Struct php_all_sys::php54::_php_stream_ops[][src]

#[repr(C)]pub struct _php_stream_ops {
    pub write: Option<unsafe extern "C" fn(stream: *mut php_stream, buf: *const c_char, count: size_t) -> size_t>,
    pub read: Option<unsafe extern "C" fn(stream: *mut php_stream, buf: *mut c_char, count: size_t) -> size_t>,
    pub close: Option<unsafe extern "C" fn(stream: *mut php_stream, close_handle: c_int) -> c_int>,
    pub flush: Option<unsafe extern "C" fn(stream: *mut php_stream) -> c_int>,
    pub label: *const c_char,
    pub seek: Option<unsafe extern "C" fn(stream: *mut php_stream, offset: off_t, whence: c_int, newoffset: *mut off_t) -> c_int>,
    pub cast: Option<unsafe extern "C" fn(stream: *mut php_stream, castas: c_int, ret: *mut *mut c_void) -> c_int>,
    pub stat: Option<unsafe extern "C" fn(stream: *mut php_stream, ssb: *mut php_stream_statbuf) -> c_int>,
    pub set_option: Option<unsafe extern "C" fn(stream: *mut php_stream, option: c_int, value: c_int, ptrparam: *mut c_void) -> c_int>,
}

Fields

write: Option<unsafe extern "C" fn(stream: *mut php_stream, buf: *const c_char, count: size_t) -> size_t>read: Option<unsafe extern "C" fn(stream: *mut php_stream, buf: *mut c_char, count: size_t) -> size_t>close: Option<unsafe extern "C" fn(stream: *mut php_stream, close_handle: c_int) -> c_int>flush: Option<unsafe extern "C" fn(stream: *mut php_stream) -> c_int>label: *const c_charseek: Option<unsafe extern "C" fn(stream: *mut php_stream, offset: off_t, whence: c_int, newoffset: *mut off_t) -> c_int>cast: Option<unsafe extern "C" fn(stream: *mut php_stream, castas: c_int, ret: *mut *mut c_void) -> c_int>stat: Option<unsafe extern "C" fn(stream: *mut php_stream, ssb: *mut php_stream_statbuf) -> c_int>set_option: Option<unsafe extern "C" fn(stream: *mut php_stream, option: c_int, value: c_int, ptrparam: *mut c_void) -> c_int>

Trait Implementations

impl Clone for _php_stream_ops[src]

impl Copy for _php_stream_ops[src]

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