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 42

Panic vs Result policy

err-design-03Related book chapters: 2, 8 (optional — this page is complete on its own)panicResult

Slug: err-design-03 · Paired reading: Chapters 2 and 8

Prompt

fn must_positive(n: i32) -> i32 panics on n <= 0 (programmer bug). fn checked_positive(n: i32) -> Result<i32, &'static str> for recoverable input.