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 41

Application errors with context

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

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

Prompt

Anyhow-style without the crate: fn load_port(cfg: &str) -> Result<u16, String> parses a port and wraps failures with context via map_err (e.g. prefix loading port: ).