此内容没有您所选择的语言版本。

Chapter 5. Changes in Rust 1.88.0 Toolset


Red Hat Enterprise Linux provides Rust Toolset at version 1.88.0. The previous version was 1.84.1. Notable enhancements include the Rust 2024 Edition, async closures, let chains, naked functions, high-performance computing, trait upcasting, and standard library improvements.

  • Rust 2024 Edition: The Rust 2024 Edition is now stable. It introduces changes such as refined capture rules for impl Trait, and safer extern blocks which now require the unsafe keyword.
  • Async Closures: The async closures are now stable.
  • Let Chains: In if and while conditions, you can use && to chain multiple let statements, which shortens complex conditional logic. Let chains are available only in the Rust 2024 Edition.
  • Naked Functions: Developers can now define "naked functions" using the #[unsafe(naked)] attribute. These functions do not have a compiler-generated prologue or epilogue, providing full control over the assembly code.
  • High-performance computing: When you enable target features, you can call multiple std::arch intrinsics directly in safe Rust, which gives you direct access to specific CPU features.
  • Trait Upcasting: It is now possible to upcast trait objects to their supertraits, improving flexibility when working with trait objects.
  • Standard Library Improvements:

    • Anonymous Pipes: Access to anonymous pipes is now available in the standard library.
    • Mutable Multiple Element Indexing: `HashMap`s and slices now support safely retrieving mutable references to multiple elements simultaneously.

      Compatibility notes
  • The #[bench] attribute has been fully de-stabilized and its usage will result in a hard error.
  • The wasm_c_abi future compatibility warning is now a hard error.
  • The missing_abi lint is now warn-by-default. You must explicitly specify the ABI in extern blocks.

Rust Toolset is a rolling Application Stream, and Red Hat only supports the latest version. For more information, see the Red Hat Enterprise Linux Application Streams Life Cycle document.

Red Hat logoGithubredditYoutubeTwitter

学习

尝试、购买和销售

社区

關於紅帽

我们提供强化的解决方案,使企业能够更轻松地跨平台和环境(从核心数据中心到网络边缘)工作。

让开源更具包容性

红帽致力于替换我们的代码、文档和 Web 属性中存在问题的语言。欲了解更多详情,请参阅红帽博客.

关于红帽文档

Legal Notice

Theme

© 2026 Red Hat
返回顶部