pub enum PhpEvalError {
MissingOpenTag,
CompilationFailed,
ExecutionFailed,
Bailout,
}Expand description
Errors that can occur when executing embedded PHP code.
Variants§
MissingOpenTag
The code does not start with a <?php open tag.
CompilationFailed
PHP failed to compile the code (syntax error).
ExecutionFailed
The code executed but threw an unhandled exception.
Bailout
A PHP fatal error (bailout) occurred during execution.
Trait Implementations§
Source§impl Debug for PhpEvalError
impl Debug for PhpEvalError
Source§impl Display for PhpEvalError
impl Display for PhpEvalError
Source§impl Error for PhpEvalError
impl Error for PhpEvalError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for PhpEvalError
impl RefUnwindSafe for PhpEvalError
impl Send for PhpEvalError
impl Sync for PhpEvalError
impl Unpin for PhpEvalError
impl UnsafeUnpin for PhpEvalError
impl UnwindSafe for PhpEvalError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more