make StandardLibrary trait public

This commit is contained in:
highflowey 2024-08-24 16:27:47 +03:30
parent 14d0bcbe9c
commit e47555fd86
2 changed files with 12 additions and 13 deletions

View file

@ -1,7 +1,5 @@
#![allow(clippy::cargo_common_metadata)]
pub use globals::require::context::RequireContext;
use mlua::prelude::*;
mod global;
@ -11,8 +9,9 @@ mod luaurc;
mod path;
pub use self::global::LuneStandardGlobal;
pub use self::globals::require::context::RequireContext;
pub use self::globals::version::set_global_version;
pub use self::library::LuneStandardLibrary;
pub use self::library::{LuneStandardLibrary, StandardLibrary};
/**
Injects all standard globals into the given Lua state / VM.

View file

@ -6,8 +6,18 @@ pub trait StandardLibrary
where
Self: Debug,
{
/**
Gets the name of the library, such as `datetime` or `fs`.
*/
fn name(&self) -> &'static str;
/**
Creates the Lua module for the library.
# Errors
If the library could not be created.
*/
fn module<'lua>(&self, lua: &'lua Lua) -> LuaResult<LuaMultiValue<'lua>>;
}
@ -49,9 +59,6 @@ impl LuneStandardLibrary {
}
impl StandardLibrary for LuneStandardLibrary {
/**
Gets the name of the library, such as `datetime` or `fs`.
*/
#[must_use]
#[rustfmt::skip]
#[allow(unreachable_patterns)]
@ -72,13 +79,6 @@ impl StandardLibrary for LuneStandardLibrary {
}
}
/**
Creates the Lua module for the library.
# Errors
If the library could not be created.
*/
#[rustfmt::skip]
#[allow(unreachable_patterns)]
fn module<'lua>(&self, lua: &'lua Lua) -> LuaResult<LuaMultiValue<'lua>> {