Docs.rs
pipa-js-0.1.4
pipa-js 0.1.4
Permalink
Docs.rs crate page
MIT
Links
crates.io
Source
Owners
shenjinti
Dependencies
flate2 ^1.1
normal
optional
libc ^0.2
normal
optional
rustls ^0.23
normal
optional
rustyline ^18
normal
optional
webpki-roots ^1.0.7
normal
optional
serde_yaml ^0.9
dev
Versions
0%
of the crate is documented
Platform
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
Skip to main content
IntoJSValue
pipa
0.1.4
IntoJS
Value
Required Methods
into_jsvalue
Implementations on Foreign Types
&str
()
Option<T>
String
bool
f64
i32
i64
Implementors
In pipa::
value
pipa
::
value
Trait
IntoJS
Value
Copy item path
Source
pub trait IntoJSValue { // Required method fn
into_jsvalue
(self, ctx: &mut
JSContext
) ->
JSValue
; }
Required Methods
§
Source
fn
into_jsvalue
(self, ctx: &mut
JSContext
) ->
JSValue
Implementations on Foreign Types
§
Source
§
impl
IntoJSValue
for &
str
Source
§
fn
into_jsvalue
(self, ctx: &mut
JSContext
) ->
JSValue
Source
§
impl
IntoJSValue
for
bool
Source
§
fn
into_jsvalue
(self, _ctx: &mut
JSContext
) ->
JSValue
Source
§
impl
IntoJSValue
for
f64
Source
§
fn
into_jsvalue
(self, _ctx: &mut
JSContext
) ->
JSValue
Source
§
impl
IntoJSValue
for
i32
Source
§
fn
into_jsvalue
(self, _ctx: &mut
JSContext
) ->
JSValue
Source
§
impl
IntoJSValue
for
i64
Source
§
fn
into_jsvalue
(self, _ctx: &mut
JSContext
) ->
JSValue
Source
§
impl
IntoJSValue
for
()
Source
§
fn
into_jsvalue
(self, _ctx: &mut
JSContext
) ->
JSValue
Source
§
impl
IntoJSValue
for
String
Source
§
fn
into_jsvalue
(self, ctx: &mut
JSContext
) ->
JSValue
Source
§
impl<T:
IntoJSValue
>
IntoJSValue
for
Option
<T>
Source
§
fn
into_jsvalue
(self, ctx: &mut
JSContext
) ->
JSValue
Implementors
§