pub enum RegVmResult {
Ok(JsValue),
Error(JErrorType),
}Expand description
Result of VM execution.
Variants§
Ok(JsValue)
Error(JErrorType)
Auto Trait Implementations§
impl Freeze for RegVmResult
impl !RefUnwindSafe for RegVmResult
impl !Send for RegVmResult
impl !Sync for RegVmResult
impl Unpin for RegVmResult
impl !UnwindSafe for RegVmResult
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