Enum quickjspp::JsCompiledValue
source · pub enum JsCompiledValue {
Function(JsCompiledFunction),
Module(JsModule),
}
Expand description
The result of loading QuickJs bytecode. Either a function or a module.
Variants§
Function(JsCompiledFunction)
Module(JsModule)
Auto Trait Implementations§
impl RefUnwindSafe for JsCompiledValue
impl !Send for JsCompiledValue
impl !Sync for JsCompiledValue
impl Unpin for JsCompiledValue
impl UnwindSafe for JsCompiledValue
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