//! Entry point that groups the mruby/rite (mrb) helpers.
//! It understands the binary layout, instruction stream, and marker metadata,
//! exposing higher-level APIs via the `rite` submodule.
pubmodbinfmt;pubmodinsn;pubmodmarker;#[allow(clippy::module_inception)]// FIXME rename
pubmodrite;pubuserite::*;usestd::error;usestd::fmt;#[derive(Debug, Copy, Clone, Eq, PartialEq)]pubenumError{
General,
TooShort,
InvalidFormat,
InvalidOpCode,
TypeMismatch,
InvalidOperand,
NoMethod,
UnknownPoolType(u8),}implfmt::Display forError{fnfmt(&self, f:&mutfmt::Formatter)->fmt::Result{write!(f,"error nr {:?}",self)}}implerror::Error forError{}