interface-types icon indicating copy to clipboard operation
interface-types copied to clipboard

Results 37 interface-types issues
Sort by recently updated
recently updated
newest added

Hi all, Seems like from proposal of interface type I've understood that adapter functions would copy types from one **abi** to another **abi** ? If so than it can hit...

It might be useful to include a standard abbreviation for a time. Something like this: ``` time ≡ (record (field "seconds" u64) (field "nanos" u32)) ``` It would be defined...

After a few recent conversations with @RossTate and @fgmccabe where this came up, I wanted to share my thoughts about how I see the relationship between Interface Types and core...

Will it be possible to define a Struct of Basic Types and pass this though Interface Types?

For an API like the C standard library `read`: ``` ssize_t read(int fildes, void *buf, size_t nbyte); ``` where the caller allocates a buffer which the callee (partially) fills in,...

Hi! I am trying to use WIT for server-side modules and found that it is a bit tricky. Basically, because there are no "common" instructions to stack-based virtual machines like...

My question is related to `Record` type. Am I right considering Record as an analog of structs in high-level languages? If so, lets consider simple example of such struct and...

What is a way of correspondence indication between adapter and core funcs? I can't find this in the docs in this repo. As far as I know, it is done...

I've written some Rust web apps which are compiled to WebAssembly and run in the browser. I'm using wasm-bindgen for this. Generally the code runs really fast (since both Rust...

There are many apis that return values asynchronously. The browser is obviously a prime suspect, but many native apis could be simplified with a promise/future-like abstraction. For example, WebGPU uses...