luars 0.26.3

A library for lua 5.5 runtime implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
use crate::LuaValue;

#[derive(Debug, Default)]
pub enum ErrorMsg {
    #[default]
    None,
    Msg(String),
    Object(LuaValue),
}