Crate rquickjs_core[][src]

High-level bindings to quickjs

The rquickjs crate provides safe high-level bindings to the quickjs javascript engine. This crate is heavily inspired by the rlua crate.

Modules

intrinsic

A marker types for intrinsic

qjs

Native low-level bindings

Macros

class_defclasses

The macro to simplify class definition.

generic_loaderloader

The helper macro to impl Loader traits for generic module kind.

module_init

Helper macro to provide module init function

Structs

Accessorproperties

The accessor descriptor of a readonly property

Array

Rust representation of a javascript object optimized as an array.

Asyncfutures

The wrapper for async functons

AsyncStdasync-std

The async_std runtime for spawning executors.

Atom

An atom is value representing the name of a variable of an objects and can be created from any javascript value.

BuiltinLoaderloader

The builtin script module loader

BuiltinResolverloader

The builtin module resolver

Bundle

The resolver and loader for bundles of compiled modules

Classclasses

The class object interface

ClassIdclasses

The type of identifier of class

Coerced

The wrapper for values to force coercion

Compileloader

Modules compiling data

Constructorclasses

The wrapper for constructor function

Context

A single execution context with its own global variables and stack.

ContextBuilder

Used for building a Context with a specific set of intrinsics

Created

The marker for the module which is created but not loaded yet

Ctx

Context in use, passed to Context::with.

Evaluated

The marker for the module which is already loaded and evaluated

Executorfutures

The async executor future

ExportEntriesIterexports

An iterator over the items exported out a module

ExportNamesIterexports

An iterator over the items exported out a module

FileResolverloader

The file module resolver

Filter

The property filter

Func

The wrapper for function to convert is into JS

Function

Rust representation of a javascript function.

Idle

The idle awaiting future

Loaded

The marker for the module which is loaded but not evaluated yet

MemoryUsage
Method

The wrapper for method functions

Module

Javascript module with certain exports and imports

ModuleLoaderloader

The builtin native module loader

MutFn

The wrapper for mutable functions

Native

The marker for the module which is created using ModuleDef

NativeLoaderdyn-load

The native module loader

Null

The placeholder which treated as null value

Object

Rust representation of a javascript object.

OnceFn

The wrapper for once functions

Opt

The wrapper to get optional argument from input

Persistent

The wrapper for JS values to keep it from GC

Promisefutures

Future-aware promise

Promisedfutures

Wrapper for futures to convert to JS promises

Propertyproperties

The data descriptor of a property

RefsMarkerclasses

The helper for QuickJS garbage collector which helps it find internal JS object references.

RegisteryKeyregistery

Key for a registery of a context.

Rest

The wrapper the rest arguments from input

Runtime

Quickjs runtime, entry point of the library.

RustAllocator

The allocator which uses Rust global allocator

Script

The marker for the module which is created from text source

ScriptLoaderloader

The script module loader

String

Rust representation of a javascript string.

Symbol

Rust representation of a javascript symbol.

This

The wrapper to get this from input

Tokiotokio

The tokio async runtime for spawning executors.

Undefined

The placeholder which treated as undefined value

Uninitialized

The placeholder which treated as uninitialized JS value

Value

Any javascript value

WithProtoclasses

The prototype setting wrapper

Enums

Error

Error type of the library.

Type

The type of value

Traits

Allocatorallocator

The allocator interface

AsArguments

A helper trait to pass arguments on a function calls.

AsFunction

The trait to wrap rust function to JS directly

AsPropertyproperties

The property interface

ClassDefclasses

The ES6 class definition trait

ExecutorSpawnerfutures

The trait to spawn execution of pending jobs on async runtime

FromAtom

Trait for converting values from atoms.

FromIteratorJs

The Rust's FromIterator trait to use with Ctx

FromJs

For converting javascript values to rust values

HasByteCode

The module data which contains bytecode

HasRefsclasses

The helper trait to mark internal JS value refs

IntoAtom

Trait for converting values to atoms.

IntoJs

For converting rust values to javascript values

Intrinsic

The internal trait to add JS builting

IteratorJs

The Rust's Iterator trait extension which works with Ctx

Loaderloader

Module loader interface

ModuleDef

Module definition trait

MultiWith

A trait for using multiple contexts at the same time.

ObjectDef

The helper trait to define objects

Outlive

The trait to help break lifetime rules when JS objects leaves current context via Persistent wrapper.

ParallelSend

The marker trait which requires Send when "parallel" feature is used

Resolverloader

Module resolver interface

Type Definitions

ModuleLoadFn

The raw module load function (js_module_init)

RawMemPtrallocator

Raw memory pointer

Result

Result type used throught the library.