pub struct RuntimeOptions {
Show 13 fields pub source_map_getter: Option<Box<dyn SourceMapGetter>>, pub get_error_class_fn: Option<GetErrorClassFn>, pub module_loader: Option<Rc<dyn ModuleLoader>>, pub extensions: Vec<Extension>, pub startup_snapshot: Option<Snapshot>, pub will_snapshot: bool, pub snapshot_module_load_cb: Option<ExtModuleLoaderCb>, pub create_params: Option<CreateParams>, pub v8_platform: Option<SharedRef<Platform>>, pub shared_array_buffer_store: Option<SharedArrayBufferStore>, pub compiled_wasm_module_store: Option<CompiledWasmModuleStore>, pub inspector: bool, pub is_main: bool,
}

Fields§

§source_map_getter: Option<Box<dyn SourceMapGetter>>

Source map reference for errors.

§get_error_class_fn: Option<GetErrorClassFn>

Allows to map error type to a string “class” used to represent error in JavaScript.

§module_loader: Option<Rc<dyn ModuleLoader>>

Implementation of ModuleLoader which will be called when V8 requests to load ES modules.

If not provided runtime will error if code being executed tries to load modules.

§extensions: Vec<Extension>

JsRuntime extensions, not to be confused with ES modules. Only ops registered by extensions will be initialized. If you need to execute JS code from extensions, pass source files in js or esm option on ExtensionBuilder.

If you are creating a runtime from a snapshot take care not to include JavaScript sources in the extensions.

§startup_snapshot: Option<Snapshot>

V8 snapshot that should be loaded on startup.

§will_snapshot: bool

Prepare runtime to take snapshot of loaded code. The snapshot is deterministic and uses predictable random numbers.

§snapshot_module_load_cb: Option<ExtModuleLoaderCb>

An optional callback that will be called for each module that is loaded during snapshotting. This callback can be used to transpile source on the fly, during snapshotting, eg. to transpile TypeScript to JavaScript.

§create_params: Option<CreateParams>

Isolate creation parameters.

§v8_platform: Option<SharedRef<Platform>>

V8 platform instance to use. Used when Deno initializes V8 (which it only does once), otherwise it’s silenty dropped.

§shared_array_buffer_store: Option<SharedArrayBufferStore>

The store to use for transferring SharedArrayBuffers between isolates. If multiple isolates should have the possibility of sharing SharedArrayBuffers, they should use the same SharedArrayBufferStore. If no SharedArrayBufferStore is specified, SharedArrayBuffer can not be serialized.

§compiled_wasm_module_store: Option<CompiledWasmModuleStore>

The store to use for transferring WebAssembly.Module objects between isolates. If multiple isolates should have the possibility of sharing WebAssembly.Module objects, they should use the same CompiledWasmModuleStore. If no CompiledWasmModuleStore is specified, WebAssembly.Module objects cannot be serialized.

§inspector: bool

Start inspector instance to allow debuggers to connect.

§is_main: bool

Describe if this is the main runtime instance, used by debuggers in some situation - like disconnecting when program finishes running.

Trait Implementations§

source§

impl Default for RuntimeOptions

source§

fn default() -> RuntimeOptions

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.