Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type file = {
path : string;
Path to Wasm module on disk
*)name : string option;
Optional name of module for linking
*)hash : string option;
Optional hash for verification
*)}
WebAssembly file
val yojson_of_file : file -> Ppx_yojson_conv_lib.Yojson.Safe.t
val file_of_yojson : Ppx_yojson_conv_lib.Yojson.Safe.t -> file
type data = {
data : string;
A string containing a Wasm module
*)name : string option;
Optional name of module for linking
*)hash : string option;
Optional hash for verification
*)}
WebAssembly module data
val yojson_of_data : data -> Ppx_yojson_conv_lib.Yojson.Safe.t
val data_of_yojson : Ppx_yojson_conv_lib.Yojson.Safe.t -> data
type url = {
url : string;
A URL to a Wasm module
*)headers : dict option;
Request headers
*)meth : string option;
Request method
*)name : string option;
Optional name of module for linking
*)hash : string option;
Optional hash for verification
*)}
WebAssembly URL
val yojson_of_url : url -> Ppx_yojson_conv_lib.Yojson.Safe.t
val url_of_yojson : Ppx_yojson_conv_lib.Yojson.Safe.t -> url