mirror of
https://github.com/mlua-rs/mlua
synced 2026-06-08 16:05:43 +00:00
12 lines
142 B
Rust
12 lines
142 B
Rust
#[derive(Default)]
|
|
#[mlua::userdata]
|
|
struct Foo;
|
|
|
|
#[mlua::userdata_impl]
|
|
impl Foo {
|
|
#[lua(getter)]
|
|
const X: u32 = 42;
|
|
}
|
|
|
|
fn main() {}
|