Trait ext_php_rs::convert::IntoZendObject[][src]

pub trait IntoZendObject {
    fn into_zend_object(self) -> Result<ZBox<ZendObject>>;
}
Expand description

Implemented on types which can be converted into a Zend object. It is up to the implementation to determine the type of object which is produced.

Required methods

Attempts to convert self into a Zend object.

Implementors