API documentation for the Rust `_2` mod in crate `show_notes`.
Read more »
wasm-opt is a component of the Binaryen toolkit,
written in C++,
that optimizes WebAssembly modules,
I have recently created a wasm-opt bindings crate for Rust
(with the extensive help of my partner Aimeedeer).
The wasm-opt crate allows wasm-opt to be ins... (more…)
Read more »
My last post was wrong in the details, so let me show a better example. Rust code : pub extern fn foo(v: &u64, callback: fn()) -> u64 { l... (more…)
Read more »
Rendering a triangle using Vulkan and Rust. Contribute to justvg/vulkan-triangle-rust development by creating an account on GitHub. (more…)
Read more »
GATs allow type parameters to associated types in traits. This feature enables total type-level functions to be associated to structs. I show how to use this pattern to implement higher-order type-level functions, and how to use specialization to make par... (more…)
Read more »