ext_php_rs/builders/
mod.rs

1//! Structures that are used to construct other, more complicated types.
2//! Generally zero-cost abstractions.
3
4mod class;
5mod function;
6mod module;
7#[cfg(feature = "embed")]
8mod sapi;
9
10pub use class::ClassBuilder;
11pub use function::FunctionBuilder;
12pub use module::ModuleBuilder;
13#[cfg(feature = "embed")]
14pub use sapi::SapiBuilder;