API documentation for the Rust `rust_1_21_1_22` mod in crate `show_notes`. (more…)
Read more »
This is my first Medium.com story. After reading, tweeting, and bookmarking hundreds of stories, I’ve decided to create a simple one for… (more…)
Read more »
2023-11-01 Update: I found out that Rust decides system constants like
EINVAL and SIGTERM at
compile-time,
which means that the portability of Rust executables is limited to
x86_64-linux and aarch64-linux, the targets with which the executables are
built.... (more…)
Read more »
It is common to see the statement that “Rust cannot abstract over mutability”. Indeed,
many functions in the standard library have an immutable and a mutable variant, e.g.
RefCell::borrow() and RefCell::borrow_mut(). However, in some cases,
such as...
Read more »
A cross-platform GUI library for Rust, inspired by Elm - GitHub - hecrj/iced: A cross-platform GUI library for Rust, inspired by Elm... (more…)
Read more »