pub enum RibEvaluationError {
ParseError(String),
CompileError(RibCompilationError),
RuntimeError(RibRuntimeError),
}Variants§
Trait Implementations§
Source§impl Debug for RibEvaluationError
impl Debug for RibEvaluationError
Source§impl From<RibCompilationError> for RibEvaluationError
impl From<RibCompilationError> for RibEvaluationError
Source§fn from(error: RibCompilationError) -> Self
fn from(error: RibCompilationError) -> Self
Converts to this type from the input type.
Source§impl From<RibRuntimeError> for RibEvaluationError
impl From<RibRuntimeError> for RibEvaluationError
Source§fn from(error: RibRuntimeError) -> Self
fn from(error: RibRuntimeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RibEvaluationError
impl !RefUnwindSafe for RibEvaluationError
impl Send for RibEvaluationError
impl Sync for RibEvaluationError
impl Unpin for RibEvaluationError
impl UnsafeUnpin for RibEvaluationError
impl !UnwindSafe for RibEvaluationError
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