#[repr(C)]pub struct _zend_fcall_info {
pub size: size_t,
pub function_name: zval,
pub retval: *mut zval,
pub params: *mut zval,
pub object: *mut zend_object,
pub param_count: u32,
pub named_params: *mut HashTable,
}
Fields§
§size: size_t
§function_name: zval
§retval: *mut zval
§params: *mut zval
§object: *mut zend_object
§param_count: u32
§named_params: *mut HashTable
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 moreimpl 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