Skip to main content

runmat_async/
lib.rs

1pub mod runtime_error;
2pub use runtime_error::{
3    runtime_error, CallFrame, ErrorContext, RuntimeError, RuntimeErrorBuilder,
4};
5
6/// Narrow set of interaction kinds used for host I/O hooks.
7#[derive(Debug, Clone, Copy, PartialEq, Eq)]
8pub enum InteractionKind {
9    Line { echo: bool },
10    KeyPress,
11}