Expand description
Fallible error types for try_* APIs.
The default safe API surface prefers panics on misuse (invalid ids, calling from within a
Box2D callback) to prevent Rust-level UB. If you want recoverable errors (e.g. in production),
use the try_* APIs returning ApiResult<T>.