You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/hyperlight_wasm/src/sandbox/proto_wasm_sandbox.rs
+43-24Lines changed: 43 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,8 @@ See the License for the specific language governing permissions and
14
14
limitations under the License.
15
15
*/
16
16
17
+
use std::collections::HashMap;
18
+
17
19
use hyperlight_common::flatbuffer_wrappers::function_types::{ParameterType,ReturnType};
18
20
use hyperlight_common::flatbuffer_wrappers::host_function_definition::HostFunctionDefinition;
19
21
use hyperlight_common::flatbuffer_wrappers::host_function_details::HostFunctionDetails;
@@ -34,8 +36,7 @@ use crate::build_info::BuildInfo;
34
36
/// With that `WasmSandbox` you can load a Wasm module through the `load_module` method and get a `LoadedWasmSandbox` which can then execute functions defined in the Wasm module.
35
37
pubstructProtoWasmSandbox{
36
38
pub(super)inner:Option<UninitializedSandbox>,
37
-
/// Tracks registered host function definitions for pushing to the guest at load time
0 commit comments