Section
Getting Started
API
Features
Guides
Reference
AI Access
Types & errors
Arguments, results, and errorsEvery public type is re-exported at the crate root: import from medius::, not medius::types::. The argument enums, the structs the box reports back, the low-level frame types, and the one Error all live here.
EXAMPLE
use medius::{Button, Action, Health, Version, Error, Result};
// One flat namespace. This does NOT work:
// use medius::types::Button;