this post was submitted on 19 Jan 2026
-1 points (47.4% liked)
Rust
7685 readers
46 users here now
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Wormhole
Credits
- The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
While I agree with your post, I do want to call out that Rust's standard library does use a lot of unstable features and calls compiler intrinsics. Anyone can use the unstable features I believe with just
#![feature(...)], but not the intrinsics (not that there's much reason to call the intrinsics directly anyway).