mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-06 12:21:06 +00:00
15 lines
243 B
Rust
15 lines
243 B
Rust
|
#[macro_use]
|
||
|
extern crate serde_derive;
|
||
|
|
||
|
#[derive(Serialize, Deserialize)]
|
||
|
pub struct Function {
|
||
|
pub name: String,
|
||
|
pub arguments: Vec<Type>,
|
||
|
pub ret: Option<Type>,
|
||
|
}
|
||
|
|
||
|
#[derive(Serialize, Deserialize)]
|
||
|
pub enum Type {
|
||
|
Number,
|
||
|
}
|