WebIsFun

🦀

Rust

Rust 是一门系统编程语言,通过独特的所有权模型和零成本抽象实现内存安全与高性能并存,同时提供线程安全保障,无需垃圾回收即可防止常见的内存和并发错误。

2025
jiangzhu

The push for GATs stabilization

The blog post by Jack Huey announces significant progress on stabilizing Generic Associated Types (GATs) in Rust, a feature proposed in 2016 via RFC 1598. GATs allow defining type, lifetime, or const generics on associated types, enabling powerful patterns like the LendingIterator for iterating over mutable slices without lifetime conflicts

02-25