#[repr(C)]
pub union _zend_function {
pub type_: u8,
pub quick_arg_flags: u32,
pub common: _zend_function__bindgen_ty_1,
pub op_array: zend_op_array,
pub internal_function: zend_internal_function,
}
Fields§
§type_: u8
§quick_arg_flags: u32
§common: _zend_function__bindgen_ty_1
§op_array: zend_op_array
§internal_function: zend_internal_function
Implementations§
Source§impl _zend_function
impl _zend_function
Sourcepub fn function_type(&self) -> FunctionType
pub fn function_type(&self) -> FunctionType
Returns the function type.
Sourcepub fn try_from_function(name: &str) -> Option<Self>
pub fn try_from_function(name: &str) -> Option<Self>
Attempts to fetch a Function
from the function name.
Sourcepub fn try_from_method(class: &str, name: &str) -> Option<Self>
pub fn try_from_method(class: &str, name: &str) -> Option<Self>
Attempts to fetch a Function
from the class and method name.
Sourcepub fn try_call(&self, params: Vec<&dyn IntoZvalDyn>) -> Result<Zval>
pub fn try_call(&self, params: Vec<&dyn IntoZvalDyn>) -> Result<Zval>
Attempts to call the callable with a list of arguments to pass to the function.
You should not call this function directly, rather through the
call_user_func
macro.
§Parameters
params
- A list of parameters to call the function with.
§Returns
Returns the result wrapped in Ok
upon success.
§Errors
- If the function call fails, an
Err
is returned. - If the number of parameters is not a valid
u32
value.
§Example
use ext_php_rs::types::ZendCallable;
let strpos = ZendCallable::try_from_name("strpos").unwrap();
let result = strpos.try_call(vec![&"hello", &"e"]).unwrap();
assert_eq!(result.long(), Some(1));
Trait Implementations§
Source§impl Clone for _zend_function
impl Clone for _zend_function
Source§fn clone(&self) -> _zend_function
fn clone(&self) -> _zend_function
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for _zend_function
Auto Trait Implementations§
impl Freeze for _zend_function
impl RefUnwindSafe for _zend_function
impl !Send for _zend_function
impl !Sync for _zend_function
impl Unpin for _zend_function
impl UnwindSafe for _zend_function
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