python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Pass JSON from Javascript to Rust-compiled WebAssembly as HashMap
How could I pass a JSON object from JS to a Rust function? Must all JSON objects with key value pairs be serialised before passing it in a call to an exported function from the compiled WASM? (Just pr...
David Min
Votes: 0
Answers: 0
What exactly happens when you write a function in rust and call it in the a JavaScript file?
Apparently making a web application using rust and wasm make it run faster. Your rust code uses web assembly as a compilation target and your rust code is compiled into web assembly, this web assembly...
PurpleMoneys89
Votes: 0
Answers: 1
How to call an async JavaScript Import Function from WebAssembly (Rust) in a node.js environment?
Let's consider an example import object that looks like this:
const importObject = {
exampleAsyncImportFunction: async () => fs.readFile("./someExampleFile.txt", "utf-8") // r...
Konrad Koschel
Votes: 0
Answers: 1
Chrome: How can I dyn_cast() JavaScript objects that are part of a window created by window.open()
I am working on a Rust WASM library that works with the DOM. To simplify matters, let's assume that this library receives a Node as argument, determines its root node and appends a newly created div t...
Elias Holzmann
Votes: 0
Answers: 0