mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-03 10:51:09 +00:00
11 lines
140 B
Rust
11 lines
140 B
Rust
|
#![crate_type = "rlib"]
|
||
|
|
||
|
extern crate wasm_bindgen;
|
||
|
|
||
|
use wasm_bindgen::prelude::*;
|
||
|
|
||
|
#[wasm_bindgen]
|
||
|
pub struct A {
|
||
|
pub field: String,
|
||
|
}
|