pub type PhpResult<T = ()> = Result<T, PhpException>;Expand description
Result type with the error variant as a PhpException.
Aliased Type§
pub enum PhpResult<T = ()> {
Ok(T),
Err(PhpException),
}pub type PhpResult<T = ()> = Result<T, PhpException>;Result type with the error variant as a PhpException.
pub enum PhpResult<T = ()> {
Ok(T),
Err(PhpException),
}