[][src]Module rusty_v8::V8

Functions

assert_initialized
dispose

Releases any resources used by v8 and stops any utility threads that may be running. Note that disposing v8 is permanent, it cannot be reinitialized.

get_version

Get the version string.

initialize

Initializes V8. This function needs to be called before the first Isolate is created. It always returns true.

initialize_platform

Sets the v8::Platform to use. This should be invoked before V8 is initialized.

set_flags_from_command_line

Pass the command line arguments to v8. The first element of args (which usually corresponds to the binary name) is ignored. Returns a vector of command line arguments that V8 did not understand. TODO: Check whether this is safe to do after globally initializing v8.

shutdown_platform

Clears all references to the v8::Platform. This should be invoked after V8 was disposed.