1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
use crate::vmcontext::{
    VMCallerCheckedAnyfunc, VMContext, VMGlobalDefinition, VMMemoryDefinition, VMTableDefinition,
};
use std::ptr::NonNull;
use wasmtime_environ::{Global, MemoryPlan, TablePlan};
pub enum Export {
    
    Function(ExportFunction),
    
    Table(ExportTable),
    
    Memory(ExportMemory),
    
    Global(ExportGlobal),
}
#[derive(Debug, Clone, Copy)]
pub struct ExportFunction {
    
    
    
    
    pub anyfunc: NonNull<VMCallerCheckedAnyfunc>,
}
unsafe impl Send for ExportFunction {}
unsafe impl Sync for ExportFunction {}
impl From<ExportFunction> for Export {
    fn from(func: ExportFunction) -> Export {
        Export::Function(func)
    }
}
#[derive(Debug, Clone)]
pub struct ExportTable {
    
    pub definition: *mut VMTableDefinition,
    
    pub vmctx: *mut VMContext,
    
    pub table: TablePlan,
}
unsafe impl Send for ExportTable {}
unsafe impl Sync for ExportTable {}
impl From<ExportTable> for Export {
    fn from(func: ExportTable) -> Export {
        Export::Table(func)
    }
}
#[derive(Debug, Clone)]
pub struct ExportMemory {
    
    pub definition: *mut VMMemoryDefinition,
    
    pub vmctx: *mut VMContext,
    
    pub memory: MemoryPlan,
}
unsafe impl Send for ExportMemory {}
unsafe impl Sync for ExportMemory {}
impl From<ExportMemory> for Export {
    fn from(func: ExportMemory) -> Export {
        Export::Memory(func)
    }
}
#[derive(Debug, Clone)]
pub struct ExportGlobal {
    
    pub definition: *mut VMGlobalDefinition,
    
    
    pub vmctx: *mut VMContext,
    
    pub global: Global,
}
unsafe impl Send for ExportGlobal {}
unsafe impl Sync for ExportGlobal {}
impl From<ExportGlobal> for Export {
    fn from(func: ExportGlobal) -> Export {
        Export::Global(func)
    }
}