From 7eecb9bb77d31ccbd17e7db7c86ddb97e238f541 Mon Sep 17 00:00:00 2001 From: Sam McCall Date: Wed, 9 Jul 2025 21:09:08 +0200 Subject: [PATCH] Link to rust-api-guidelines (#2813) This has a lot of detailed and high-quality API advice. I think it's particularly useful to developers experienced in other languages, who may default to carrying over design idioms where Rust has better options. --- src/other-resources.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/other-resources.md b/src/other-resources.md index c7092ac1..ec241d5d 100644 --- a/src/other-resources.md +++ b/src/other-resources.md @@ -18,6 +18,8 @@ The Rust project hosts many resources. These cover Rust in general: the standard library for Rust. - [The Rust Reference](https://doc.rust-lang.org/reference/): an incomplete book which describes the Rust grammar and memory model. +- [Rust API Guidelines](https://rust-lang.github.io/api-guidelines/): + recommendations on how to design APIs. More specialized guides hosted on the official Rust site: