Struct ext_php_rs::describe::Class [−][src]
pub struct Class {
pub name: Cow<'static, str>,
pub docs: DocBlock,
pub extends: Option<Cow<'static, str>>,
pub implements: Vec<Cow<'static, str>>,
pub properties: Vec<Property>,
pub methods: Vec<Method>,
pub constants: Vec<Constant>,
}Expand description
Represents an exported class.
Fields
name: Cow<'static, str>docs: DocBlockextends: Option<Cow<'static, str>>implements: Vec<Cow<'static, str>>properties: Vec<Property>methods: Vec<Method>constants: Vec<Constant>