Simple and safe type conversions that may fail in a controlled way under some circumstances. It is the reciprocal of `TryInto`.| doc.rust-lang.org
GitHub Gist: instantly share code, notes, and snippets.| Gist
End-to-end deep dive of the project, spanning a large GPU cluster, distributed RocksDB, and terabytes of sharded HNSW.| Wilson Lin
It’s no secret that my taste in programming languages is very weird for a programming language enthusiast professional. Several of my last few posts are about Go, broadly regarded as the programming language equivalent of eating plain oatmeal for breakfast.| mcyoung.xyz
Working on something completely unrelated, I stumbled across this comment in a Rust project:| Corrode Rust Consulting
Traits, helpers, and type definitions for core I/O functionality.| doc.rust-lang.org
Collection types.| doc.rust-lang.org
A wrapper type to construct uninitialized instances of `T`.| doc.rust-lang.org
Types that pin data to a location in memory.| doc.rust-lang.org
Does Julia solve the two-language problem and when should you use Rust instead?| mo8it.com
Last year I finally decided to learn some Rust. The official book by Steve Klabnik and Carol Nichols is excellent, but even after reading it and working on some small code exercises, I felt that I …| Manuel Cerón
Measure What You Optimize| cliffle.com
The essentials of the Rust programming language in one post| GeekLaunch
Want to follow along with Rust development? Curious how you might get involved? Take a look!| blog.rust-lang.org
Stack and Heap allocation problems with Rust| deislabs.io
A clone-on-write smart pointer.| doc.rust-lang.org
A wrapper type to construct uninitialized instances of `T`.| doc.rust-lang.org
Types that pin data to a location in memory.| doc.rust-lang.org
Types whose values can be duplicated simply by copying bits.| doc.rust-lang.org
A contiguous growable array type, written as `Vec`, short for ‘vector’.| doc.rust-lang.org
Memory in WebAssembly is one of the topics that creates confusion for newcomers, particularly for those with experience in languages with memory management features like garbage collection, such as JavaScript, Go, or Java. In this article we explore using memory in WebAssembly in various scenarios - passing JavaScript arrays to Rust and AssemblyScript modules, checking for some basic memory leaks using Valgrind, or exchanging strings between runtimes and modules using Wasmtime.| radu-matei.com
In this article, we experiment with building a Rust program that performs image classification using the MobileNet V2 TensorFlow model, compile it to WebAssembly, and instantiate the module using two WebAssembly runtimes that use the WebAssembly System Interface (WASI), the native NodeJS WASI runtime, and Wasmtime. A special interest is given to writing model and image data into the module’s linear memory, with implementations in both JavaScript and Rust. Finally, a simple prediction API is...| radu-matei.com
Benchmarking different implementations of a multithreaded, parallelized 2D grid.| Adam Chalmers Programming Blog
Const generics let us combine the speed of Arrays with the flexibility of Vecs.| Adam Chalmers Programming Blog
The sensation of incremental progress when programming with Rust.| healeycodes.com