Enter your book access code

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

Method elision and self

borrow-life-04Related book chapters: 6 (optional — this page is complete on its own)lifetimeelision

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()).