mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
StandardLibrary trait
This commit is contained in:
parent
3f709f1e96
commit
2b7bb89037
1 changed files with 15 additions and 4 deletions
|
@ -2,6 +2,17 @@ use std::str::FromStr;
|
|||
|
||||
use mlua::prelude::*;
|
||||
|
||||
pub trait StandardLibrary
|
||||
where
|
||||
Self: Sized + 'static + FromStr,
|
||||
{
|
||||
const ALL: &'static [Self];
|
||||
|
||||
fn name(&self) -> &'static str;
|
||||
|
||||
fn module<'lua>(&self, lua: &'lua Lua) -> LuaResult<LuaMultiValue<'lua>>;
|
||||
}
|
||||
|
||||
/**
|
||||
A standard library provided by Lune.
|
||||
*/
|
||||
|
@ -20,12 +31,12 @@ pub enum LuneStandardLibrary {
|
|||
#[cfg(feature = "roblox")] Roblox,
|
||||
}
|
||||
|
||||
impl LuneStandardLibrary {
|
||||
impl StandardLibrary for LuneStandardLibrary {
|
||||
/**
|
||||
All available standard libraries.
|
||||
*/
|
||||
#[rustfmt::skip]
|
||||
pub const ALL: &'static [Self] = &[
|
||||
const ALL: &'static [Self] = &[
|
||||
#[cfg(feature = "datetime")] Self::DateTime,
|
||||
#[cfg(feature = "fs")] Self::Fs,
|
||||
#[cfg(feature = "luau")] Self::Luau,
|
||||
|
@ -44,7 +55,7 @@ impl LuneStandardLibrary {
|
|||
#[must_use]
|
||||
#[rustfmt::skip]
|
||||
#[allow(unreachable_patterns)]
|
||||
pub fn name(&self) -> &'static str {
|
||||
fn name(&self) -> &'static str {
|
||||
match self {
|
||||
#[cfg(feature = "datetime")] Self::DateTime => "datetime",
|
||||
#[cfg(feature = "fs")] Self::Fs => "fs",
|
||||
|
@ -70,7 +81,7 @@ impl LuneStandardLibrary {
|
|||
*/
|
||||
#[rustfmt::skip]
|
||||
#[allow(unreachable_patterns)]
|
||||
pub fn module<'lua>(&self, lua: &'lua Lua) -> LuaResult<LuaMultiValue<'lua>> {
|
||||
fn module<'lua>(&self, lua: &'lua Lua) -> LuaResult<LuaMultiValue<'lua>> {
|
||||
let res: LuaResult<LuaTable> = match self {
|
||||
#[cfg(feature = "datetime")] Self::DateTime => lune_std_datetime::module(lua),
|
||||
#[cfg(feature = "fs")] Self::Fs => lune_std_fs::module(lua),
|
||||
|
|
Loading…
Add table
Reference in a new issue