Enum ext_php_rs::class::ConstructorResult [−][src]
pub enum ConstructorResult<T> {
Ok(T),
Exception(PhpException),
ArgError,
}
Expand description
Result returned from a constructor of a class.
Variants
Successfully constructed the class, contains the new class object.
Exception(PhpException)
An exception occured while constructing the class.
Tuple Fields of Exception
0: PhpException
Invalid arguments were given to the constructor.