//! Builder and objects for creating modules in PHP. A module is the base of a
//! PHP extension.
usecrate::ffi::zend_module_entry;/// A Zend module entry, also known as an extension.
pubtypeModuleEntry= zend_module_entry;implModuleEntry{/// Allocates the module entry on the heap, returning a pointer to the
/// memory location. The caller is responsible for the memory pointed to.
pubfninto_raw(self)->*mutSelf{Box::into_raw(Box::new(self))}}