github.com/moontrade/wavm-go@v0.3.2-0.20220316110326-d229dd66ad65/limits.go (about)

     1  package wavm
     2  
     3  /*
     4  	typedef struct wasm_limits_t
     5  	{
     6  		uint32_t min;
     7  		uint32_t max;
     8  	} wasm_limits_t;
     9  */
    10  type Limits struct {
    11  	Min uint32
    12  	Max uint32
    13  }