ext-php-rs 0.10.0

Bindings for the Zend API to build PHP extensions natively in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Structures that are used to construct other, more complicated types.
//! Generally zero-cost abstractions.

mod class;
mod function;
mod module;

pub use class::ClassBuilder;
pub use function::FunctionBuilder;
pub use module::ModuleBuilder;