ext-php-rs 0.15.9

Bindings for the Zend API to build PHP extensions natively in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::{describe::DocComments, flags::DataType, flags::PropertyFlags, props::Property};

pub struct PropertyInfo<'a, T> {
    pub prop: Property<'a, T>,
    pub flags: PropertyFlags,
    pub docs: DocComments,
    pub ty: DataType,
    pub nullable: bool,
    pub readonly: bool,
}