Struct phper_sys::_php_stream_ops
source · [−]#[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) -> ssize_t>,
pub read: Option<unsafe extern "C" fn(stream: *mut php_stream, buf: *mut c_char, count: size_t) -> ssize_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: zend_off_t, whence: c_int, newoffset: *mut zend_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) -> ssize_t>
read: Option<unsafe extern "C" fn(stream: *mut php_stream, buf: *mut c_char, count: size_t) -> ssize_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_char
seek: Option<unsafe extern "C" fn(stream: *mut php_stream, offset: zend_off_t, whence: c_int, newoffset: *mut zend_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
sourceimpl Clone for _php_stream_ops
impl Clone for _php_stream_ops
sourcefn clone(&self) -> _php_stream_ops
fn clone(&self) -> _php_stream_ops
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for _php_stream_ops
impl Debug for _php_stream_ops
impl Copy for _php_stream_ops
Auto Trait Implementations
impl RefUnwindSafe for _php_stream_ops
impl !Send for _php_stream_ops
impl !Sync for _php_stream_ops
impl Unpin for _php_stream_ops
impl UnwindSafe for _php_stream_ops
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more