Struct ext_php_rs::ffi::_zend_internal_function
source · [−]#[repr(C)]pub struct _zend_internal_function {Show 13 fields
pub type_: zend_uchar,
pub arg_flags: [zend_uchar; 3],
pub fn_flags: u32,
pub function_name: *mut zend_string,
pub scope: *mut zend_class_entry,
pub prototype: *mut zend_function,
pub num_args: u32,
pub required_num_args: u32,
pub arg_info: *mut zend_internal_arg_info,
pub attributes: *mut HashTable,
pub handler: zif_handler,
pub module: *mut _zend_module_entry,
pub reserved: [*mut c_void; 6],
}
Fields
type_: zend_uchar
arg_flags: [zend_uchar; 3]
fn_flags: u32
function_name: *mut zend_string
scope: *mut zend_class_entry
prototype: *mut zend_function
num_args: u32
required_num_args: u32
arg_info: *mut zend_internal_arg_info
attributes: *mut HashTable
handler: zif_handler
module: *mut _zend_module_entry
reserved: [*mut c_void; 6]
Trait Implementations
sourceimpl Clone for _zend_internal_function
impl Clone for _zend_internal_function
sourcefn clone(&self) -> _zend_internal_function
fn clone(&self) -> _zend_internal_function
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 _zend_internal_function
impl Debug for _zend_internal_function
impl Copy for _zend_internal_function
Auto Trait Implementations
impl RefUnwindSafe for _zend_internal_function
impl !Send for _zend_internal_function
impl !Sync for _zend_internal_function
impl Unpin for _zend_internal_function
impl UnwindSafe for _zend_internal_function
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more