1 2 3 4 5 6 7 8 9
use derive_more::From; use mlua::ToLua; #[derive(Clone, ToLua, From)] pub enum Index { #[mlua(value = 0)] Current, Index(i64), }