pub enum EvalResult {
Value(Value),
ControlFlow(ControlFlow, Option<Value>),
}Variants§
Implementations§
Source§impl EvalResult
impl EvalResult
pub fn parse_value(self) -> Result<Value, RuntimeError>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EvalResult
impl RefUnwindSafe for EvalResult
impl Send for EvalResult
impl Sync for EvalResult
impl Unpin for EvalResult
impl UnwindSafe for EvalResult
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