luaur-code-gen 0.1.2

Native (A64/X64) code generation for Luau (Rust).
Documentation
1
2
3
4
5
6
7
8
//! Shared behavior traits for the assembly builders.
//!
//! C++ templates over `AssemblyBuilder` (X64/A64) call `build.logAppend(...)`;
//! the Rust translation type-erases that capability behind this trait.

pub trait LogAppend {
    fn log_append(&mut self, args: core::fmt::Arguments<'_>);
}