runmat-async 0.4.5

Shared async runtime error types and host I/O interaction primitives for RunMat
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod runtime_error;
pub use runtime_error::{
    runtime_error, CallFrame, ErrorContext, RuntimeError, RuntimeErrorBuilder,
};

/// Narrow set of interaction kinds used for host I/O hooks.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum InteractionKind {
    Line { echo: bool },
    KeyPress,
}