Trait ext_php_rs::convert::FromZvalMut
source · pub trait FromZvalMut<'a>: Sized {
const TYPE: DataType;
// Required method
fn from_zval_mut(zval: &'a mut Zval) -> Option<Self>;
}Expand description
Required Associated Constants§
Required Methods§
sourcefn from_zval_mut(zval: &'a mut Zval) -> Option<Self>
fn from_zval_mut(zval: &'a mut Zval) -> Option<Self>
Attempts to retrieve an instance of Self from a mutable reference to a
Zval.
Parameters
zval- Zval to get value from.
Object Safety§
This trait is not object safe.
Implementors§
source§impl<'a> FromZvalMut<'a> for &'a mut Closure
Available on crate feature closure only.
impl<'a> FromZvalMut<'a> for &'a mut Closure
Available on crate feature
closure only.