luaur-require 0.1.3

Require-by-string module resolution for Luau (Rust).
Documentation
1
2
3
4
5
6
7
8
9
pub trait ErrorHandler {
    fn report_error(&mut self, message: alloc::string::String);
}

impl core::fmt::Debug for dyn ErrorHandler {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        f.debug_struct("ErrorHandler").finish_non_exhaustive()
    }
}