mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-25 06:02:13 +00:00
guide: Add str
examples to supported types section
This commit is contained in:
parent
8e19645006
commit
fa72afe286
@ -5,3 +5,4 @@ extern crate wasm_bindgen;
|
|||||||
|
|
||||||
pub mod imported_types;
|
pub mod imported_types;
|
||||||
pub mod exported_types;
|
pub mod exported_types;
|
||||||
|
pub mod str;
|
||||||
|
4
examples/guide-supported-types-examples/src/str.rs
Normal file
4
examples/guide-supported-types-examples/src/str.rs
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
use wasm_bindgen::prelude::*;
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
pub fn take_str_by_shared_ref(x: &str) {}
|
5
examples/guide-supported-types-examples/str.js
Normal file
5
examples/guide-supported-types-examples/str.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import {
|
||||||
|
take_str_by_shared_ref,
|
||||||
|
} from './guide_supported_types_examples';
|
||||||
|
|
||||||
|
take_str_by_shared_ref('hello');
|
@ -44,13 +44,25 @@ JavaScript.
|
|||||||
|
|
||||||
| `T` parameter | `&T` parameter | `&mut T` parameter | `T` return value | `Option<T>` parameter | `Option<T>` return value | JavaScript representation |
|
| `T` parameter | `&T` parameter | `&mut T` parameter | `T` return value | `Option<T>` parameter | `Option<T>` return value | JavaScript representation |
|
||||||
|:---:|:---:|:---:|:---:|:---:|:---:|:---:|
|
|:---:|:---:|:---:|:---:|:---:|:---:|:---:|
|
||||||
| No | Yes | No | Yes | Yes | No | JavaScript string value |
|
| No | Yes | No | No | No | No | JavaScript string value |
|
||||||
|
|
||||||
Copies the string's contents back and forth between the JavaScript
|
Copies the string's contents back and forth between the JavaScript
|
||||||
garbage-collected heap and the Wasm linear memory with `TextDecoder` and
|
garbage-collected heap and the Wasm linear memory with `TextDecoder` and
|
||||||
`TextEncoder`. If you don't want to perform this copy, and would rather work
|
`TextEncoder`. If you don't want to perform this copy, and would rather work
|
||||||
with handles to JavaScript string values, use the `js_sys::JsString` type.
|
with handles to JavaScript string values, use the `js_sys::JsString` type.
|
||||||
|
|
||||||
|
### Example Rust Usage
|
||||||
|
|
||||||
|
```rust
|
||||||
|
{{#include ../../../examples/guide-supported-types-examples/src/str.rs}}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Example JavaScript Usage
|
||||||
|
|
||||||
|
```js
|
||||||
|
{{#include ../../../examples/guide-supported-types-examples/str.js}}
|
||||||
|
```
|
||||||
|
|
||||||
## `String`
|
## `String`
|
||||||
|
|
||||||
| `T` parameter | `&T` parameter | `&mut T` parameter | `T` return value | `Option<T>` parameter | `Option<T>` return value | JavaScript representation |
|
| `T` parameter | `&T` parameter | `&mut T` parameter | `T` return value | `Option<T>` parameter | `Option<T>` return value | JavaScript representation |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user