pub struct ClassBuilder { /* private fields */ }
Expand description

Builder for registering a class in PHP.

Implementations§

source§

impl ClassBuilder

source

pub fn new<T: Into<String>>(name: T) -> Self

Creates a new class builder, used to build classes to be exported to PHP.

Parameters
  • name - The name of the class.
source

pub fn extends(self, parent: &'static ClassEntry) -> Self

Sets the class builder to extend another class.

Parameters
  • parent - The parent class to extend.
source

pub fn implements(self, interface: &'static ClassEntry) -> Self

Implements an interface on the class.

Parameters
  • interface - Interface to implement on the class.
Panics

Panics when the given class entry interface is not an interface.

source

pub fn method(self, func: FunctionEntry, flags: MethodFlags) -> Self

Adds a method to the class.

Parameters
  • func - The function entry to add to the class.
  • flags - Flags relating to the function. See MethodFlags.
source

pub fn property<T: Into<String>>( self, name: T, default: impl IntoZval, flags: PropertyFlags ) -> Self

Adds a property to the class. The initial type of the property is given by the type of the given default. Note that the user can change the type.

Parameters
  • name - The name of the property to add to the class.
  • default - The default value of the property.
  • flags - Flags relating to the property. See PropertyFlags.
Panics

Function will panic if the given default cannot be converted into a Zval.

source

pub fn constant<T: Into<String>>( self, name: T, value: impl IntoZval ) -> Result<Self>

Adds a constant to the class. The type of the constant is defined by the type of the given default.

Returns a result containing the class builder if the constant was successfully added.

Parameters
  • name - The name of the constant to add to the class.
  • value - The value of the constant.
source

pub fn flags(self, flags: ClassFlags) -> Self

Sets the flags for the class.

Parameters
  • flags - Flags relating to the class. See ClassFlags.
source

pub fn object_override<T: RegisteredClass>(self) -> Self

Overrides the creation of the Zend object which will represent an instance of this class.

Parameters
  • T - The type which will override the Zend object. Must implement RegisteredClass which can be derived using the php_class attribute macro.
Panics

Panics if the class name associated with T is not the same as the class name specified when creating the builder.

source

pub fn build(self) -> Result<&'static mut ClassEntry>

Builds the class, returning a reference to the class entry.

Errors

Returns an Error variant if the class could not be registered.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.