#[repr(C)]pub struct _zend_fcall_info {
pub size: size_t,
pub function_table: *mut HashTable,
pub function_name: *mut zval,
pub symbol_table: *mut HashTable,
pub retval_ptr_ptr: *mut *mut zval,
pub param_count: zend_uint,
pub params: *mut *mut *mut zval,
pub object_ptr: *mut zval,
pub no_separation: zend_bool,
}
Fields§
§size: size_t
§function_table: *mut HashTable
§function_name: *mut zval
§symbol_table: *mut HashTable
§retval_ptr_ptr: *mut *mut zval
§param_count: zend_uint
§params: *mut *mut *mut zval
§object_ptr: *mut zval
§no_separation: zend_bool
Trait Implementations§
Source§impl Clone for _zend_fcall_info
impl Clone for _zend_fcall_info
Source§fn clone(&self) -> _zend_fcall_info
fn clone(&self) -> _zend_fcall_info
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for _zend_fcall_info
impl Debug for _zend_fcall_info
impl Copy for _zend_fcall_info
Auto Trait Implementations§
impl Freeze for _zend_fcall_info
impl RefUnwindSafe for _zend_fcall_info
impl !Send for _zend_fcall_info
impl !Sync for _zend_fcall_info
impl Unpin for _zend_fcall_info
impl UnwindSafe for _zend_fcall_info
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more