mirror of
https://github.com/fluencelabs/wasmer
synced 2025-04-03 16:31:02 +00:00
35 lines
611 B
Rust
35 lines
611 B
Rust
|
use crate::{
|
||
|
instance::FuncRef,
|
||
|
types::{FuncSig, GlobalDesc, Memory, Table},
|
||
|
vm,
|
||
|
};
|
||
|
|
||
|
#[derive(Debug, Clone)]
|
||
|
pub enum Context {
|
||
|
External(*mut vm::Ctx),
|
||
|
Internal,
|
||
|
}
|
||
|
|
||
|
#[derive(Debug, Clone)]
|
||
|
pub enum Export {
|
||
|
Function {
|
||
|
func: FuncRef,
|
||
|
ctx: Context,
|
||
|
signature: FuncSig,
|
||
|
},
|
||
|
Memory {
|
||
|
local: *mut vm::LocalMemory,
|
||
|
ctx: Context,
|
||
|
memory: Memory,
|
||
|
},
|
||
|
Table {
|
||
|
local: *mut vm::LocalTable,
|
||
|
ctx: Context,
|
||
|
table: Table,
|
||
|
},
|
||
|
Global {
|
||
|
local: *mut vm::LocalGlobal,
|
||
|
global: GlobalDesc,
|
||
|
},
|
||
|
}
|