Medius - Rust LibraryTypes overview

Types & errors

Arguments, results, and errors

Every 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;