pub trait IntoZendObject {
    // Required method
    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§

source

fn into_zend_object(self) -> Result<ZBox<ZendObject>>

Attempts to convert self into a Zend object.

Implementors§

source§

impl IntoZendObject for Closure

Available on crate feature closure only.