/// Parser error types.
///
/// In the original hand-written parser these corresponded to allocation failures
/// and stack overflow during recursive inline processing. With pulldown-cmark
/// as the engine, only `OutOfMemory` and `StackOverflow` are realistically
/// reachable (via renderer callbacks).
oom_from_alloc!;