Slug: borrow-life-04 · Paired reading: Chapter 6
Prompt
struct Name(String) with fn as_str(&self) -> &str — elision ties
the output lifetime to &self. Implement it (via self.0.as_str()).
The curriculum, drills, tutor, and interviewer mode are for readers of Ace the Rust Interview. The code is printed in the Preface (Companion site access).
Don’t have the book yet? The landing page stays open — purchase unlocks this gym.
beginner · order 35
Slug: borrow-life-04 · Paired reading: Chapter 6
struct Name(String) with fn as_str(&self) -> &str — elision ties
the output lifetime to &self. Implement it (via self.0.as_str()).