Docs.rs
  • quickjs_runtime-0.11.5
    • quickjs_runtime 0.11.5
    • Docs.rs crate page
    • MIT
    • Links
    • Homepage
    • Documentation
    • Repository
    • crates.io
    • Source
    • Owners
    • andrieshiemstra
    • Dependencies
      • backtrace ^0.3.67 normal
      • futures ^0.3 normal
      • hirofa_utils ^0.7 normal
      • lazy_static ^1.4.0 normal
      • libquickjs-sys ^0.10.0 normal
      • log ^0.4 normal
      • num_cpus ^1 normal
      • rand ^0.8 normal
      • serde ^1.0 normal
      • serde_json ^1.0 normal
      • simple-logging ^2.0 normal
      • string_cache ^0.8 normal
      • swc =0.236.21 normal
      • swc_atoms =0.4.43 normal
      • swc_cached =0.3.15 normal
      • swc_common =0.29.40 normal
      • swc_config =0.1.5 normal
      • swc_config_macro =0.1.1 normal
      • swc_ecma_ast =0.95.11 normal
      • swc_ecma_codegen =0.128.18 normal
      • swc_ecma_codegen_macros =0.7.2 normal
      • swc_ecma_ext_transforms =0.92.19 normal
      • swc_ecma_lints =0.67.24 normal
      • swc_ecma_loader =0.41.42 normal
      • swc_ecma_minifier =0.160.38 normal
      • swc_ecma_parser =0.123.16 normal
      • swc_ecma_preset_env =0.175.23 normal
      • swc_ecma_transforms =0.199.27 normal
      • swc_ecma_transforms_base =0.112.24 normal
      • swc_ecma_transforms_classes =0.101.24 normal
      • swc_ecma_transforms_compat =0.137.25 normal
      • swc_ecma_transforms_macros =0.5.1 normal
      • swc_ecma_transforms_module =0.154.25 normal
      • swc_ecma_transforms_optimization =0.168.27 normal
      • swc_ecma_transforms_proposal =0.145.25 normal
      • swc_ecma_transforms_react =0.156.26 normal
      • swc_ecma_transforms_typescript =0.160.27 normal
      • swc_ecma_usage_analyzer =0.1.13 normal
      • swc_ecma_utils =0.106.18 normal
      • swc_ecma_visit =0.81.11 normal
      • swc_eq_ignore_macros =0.1.1 normal
      • swc_error_reporters =0.13.41 normal
      • swc_fast_graph =0.17.42 normal
      • swc_macros_common =0.3.7 normal
      • swc_node_comments =0.16.40 normal
      • swc_timer =0.17.43 normal
      • swc_trace_macro =0.1.2 normal
      • swc_visit =0.5.6 normal
      • swc_visit_macros =0.5.7 normal
      • thread-id ^4 normal
      • tokio ^1 normal
      • cargo-husky ^1.5.0 dev
      • serde ^1 dev
      • serde_json ^1 dev
    • Versions
    • 41.3% of the crate is documented
  • Go to latest version
  • Platform
    • i686-unknown-linux-gnu
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation
logo

logo

JsValueConvertable

Required Methods

  • to_js_value_facade

Implementations on Foreign Types

  • &str
  • HashMap<String, JsValueFacade>
  • String
  • Value
  • Vec<JsValueFacade>
  • Vec<u8>
  • bool
  • f64
  • i32

Implementors

In quickjs_runtime::values

?
Change settings

Trait quickjs_runtime::values::JsValueConvertable

source ·
pub trait JsValueConvertable {
    // Required method
    fn to_js_value_facade(self) -> JsValueFacade;
}

Required Methods§

source

fn to_js_value_facade(self) -> JsValueFacade

Implementations on Foreign Types§

source§

impl JsValueConvertable for i32

source§

fn to_js_value_facade(self) -> JsValueFacade

source§

impl JsValueConvertable for Vec<JsValueFacade>

source§

fn to_js_value_facade(self) -> JsValueFacade

source§

impl JsValueConvertable for String

source§

fn to_js_value_facade(self) -> JsValueFacade

source§

impl JsValueConvertable for bool

source§

fn to_js_value_facade(self) -> JsValueFacade

source§

impl JsValueConvertable for &str

source§

fn to_js_value_facade(self) -> JsValueFacade

source§

impl JsValueConvertable for f64

source§

fn to_js_value_facade(self) -> JsValueFacade

source§

impl JsValueConvertable for Value

source§

fn to_js_value_facade(self) -> JsValueFacade

source§

impl JsValueConvertable for Vec<u8>

source§

fn to_js_value_facade(self) -> JsValueFacade

source§

impl JsValueConvertable for HashMap<String, JsValueFacade>

source§

fn to_js_value_facade(self) -> JsValueFacade

Implementors§