Update docs

This commit is contained in:
Alex Orlenko 2021-11-25 15:43:28 +00:00
parent 9f073ad879
commit 2fee3e7891
No known key found for this signature in database
GPG Key ID: 4C150C250863B96D
9 changed files with 67 additions and 48 deletions

View File

@ -17,7 +17,7 @@ with async/await features and support of writing native Lua modules in Rust.
""" """
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = ["lua53", "async", "send", "serialize", "macros"] features = ["lua54", "vendored", "async", "send", "serialize", "macros"]
rustdoc-args = ["--cfg", "docsrs"] rustdoc-args = ["--cfg", "docsrs"]
[workspace] [workspace]

View File

@ -127,7 +127,7 @@ fn main() -> LuaResult<()> {
``` ```
### Module mode ### Module mode
In a module mode `mlua` allows to create a compiled Lua module that can be loaded from Lua code using [`require`](https://www.lua.org/manual/5.3/manual.html#pdf-require). In this case `mlua` uses an external Lua runtime which could lead to potential unsafety due to unpredictability of the Lua environment and usage of libraries such as [`debug`](https://www.lua.org/manual/5.3/manual.html#6.10). In a module mode `mlua` allows to create a compiled Lua module that can be loaded from Lua code using [`require`](https://www.lua.org/manual/5.4/manual.html#pdf-require). In this case `mlua` uses an external Lua runtime which could lead to potential unsafety due to unpredictability of the Lua environment and usage of libraries such as [`debug`](https://www.lua.org/manual/5.4/manual.html#6.10).
[Example](examples/module) [Example](examples/module)
@ -164,7 +164,7 @@ And then (**macOS** example):
``` sh ``` sh
$ cargo rustc -- -C link-arg=-undefined -C link-arg=dynamic_lookup $ cargo rustc -- -C link-arg=-undefined -C link-arg=dynamic_lookup
$ ln -s ./target/debug/libmy_module.dylib ./my_module.so $ ln -s ./target/debug/libmy_module.dylib ./my_module.so
$ lua5.3 -e 'require("my_module").hello("world")' $ lua5.4 -e 'require("my_module").hello("world")'
hello, world! hello, world!
``` ```

View File

@ -11,9 +11,9 @@ use crate::lua::Lua;
/// The `Debug` structure is provided as a parameter to the hook function set with /// The `Debug` structure is provided as a parameter to the hook function set with
/// [`Lua::set_hook`]. You may call the methods on this structure to retrieve information about the /// [`Lua::set_hook`]. You may call the methods on this structure to retrieve information about the
/// Lua code executing at the time that the hook function was called. Further information can be /// Lua code executing at the time that the hook function was called. Further information can be
/// found in the [Lua 5.3 documentation][lua_doc]. /// found in the Lua [documentation][lua_doc].
/// ///
/// [lua_doc]: https://www.lua.org/manual/5.3/manual.html#lua_Debug /// [lua_doc]: https://www.lua.org/manual/5.4/manual.html#lua_Debug
/// [`Lua::set_hook`]: crate::Lua::set_hook /// [`Lua::set_hook`]: crate::Lua::set_hook
pub struct Debug<'lua> { pub struct Debug<'lua> {
lua: &'lua Lua, lua: &'lua Lua,
@ -171,10 +171,10 @@ pub struct DebugSource<'a> {
pub struct DebugStack { pub struct DebugStack {
pub num_ups: i32, pub num_ups: i32,
/// Requires `feature = "lua54/lua53/lua52"` /// Requires `feature = "lua54/lua53/lua52"`
#[cfg(any(feature = "lua54", feature = "lua53", feature = "lua52", doc))] #[cfg(any(feature = "lua54", feature = "lua53", feature = "lua52"))]
pub num_params: i32, pub num_params: i32,
/// Requires `feature = "lua54/lua53/lua52"` /// Requires `feature = "lua54/lua53/lua52"`
#[cfg(any(feature = "lua54", feature = "lua53", feature = "lua52", doc))] #[cfg(any(feature = "lua54", feature = "lua53", feature = "lua52"))]
pub is_vararg: bool, pub is_vararg: bool,
} }

View File

@ -192,6 +192,23 @@ extern crate mlua_derive;
#[cfg_attr(docsrs, doc(cfg(feature = "macros")))] #[cfg_attr(docsrs, doc(cfg(feature = "macros")))]
pub use mlua_derive::chunk; pub use mlua_derive::chunk;
#[cfg(any(feature = "module"))] /// Registers Lua module entrypoint.
///
/// You can register multiple entrypoints as required.
///
/// ```
/// use mlua::{Lua, Result, Table};
///
/// #[mlua::lua_module]
/// fn my_module(lua: &Lua) -> Result<Table> {
/// let exports = lua.create_table()?;
/// exports.set("hello", "world")?;
/// Ok(exports)
/// }
/// ```
///
/// Internally in the code above the compiler defines C function `luaopen_my_module`.
///
#[cfg(any(feature = "module", docsrs))]
#[cfg_attr(docsrs, doc(cfg(feature = "module")))] #[cfg_attr(docsrs, doc(cfg(feature = "module")))]
pub use mlua_derive::lua_module; pub use mlua_derive::lua_module;

View File

@ -119,14 +119,14 @@ struct MemoryInfo {
/// In Lua 5.4 GC can work in two modes: incremental and generational. /// In Lua 5.4 GC can work in two modes: incremental and generational.
/// Previous Lua versions support only incremental GC. /// Previous Lua versions support only incremental GC.
/// ///
/// More information can be found in the Lua 5.x [documentation]. /// More information can be found in the Lua [documentation].
/// ///
/// [documentation]: https://www.lua.org/manual/5.4/manual.html#2.5 /// [documentation]: https://www.lua.org/manual/5.4/manual.html#2.5
#[derive(Clone, Copy, Debug, PartialEq, Eq)] #[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum GCMode { pub enum GCMode {
Incremental, Incremental,
/// Requires `feature = "lua54"` /// Requires `feature = "lua54"`
#[cfg(any(feature = "lua54", doc))] #[cfg(any(feature = "lua54"))]
Generational, Generational,
} }
@ -144,8 +144,8 @@ pub struct LuaOptions {
/// ///
/// Default: **true** /// Default: **true**
/// ///
/// [`pcall`]: https://www.lua.org/manual/5.3/manual.html#pdf-pcall /// [`pcall`]: https://www.lua.org/manual/5.4/manual.html#pdf-pcall
/// [`xpcall`]: https://www.lua.org/manual/5.3/manual.html#pdf-xpcall /// [`xpcall`]: https://www.lua.org/manual/5.4/manual.html#pdf-xpcall
pub catch_rust_panics: bool, pub catch_rust_panics: bool,
/// Max size of thread (coroutine) object cache used to execute asynchronous functions. /// Max size of thread (coroutine) object cache used to execute asynchronous functions.
@ -157,6 +157,7 @@ pub struct LuaOptions {
/// ///
/// [`lua_resetthread`]: https://www.lua.org/manual/5.4/manual.html#lua_resetthread /// [`lua_resetthread`]: https://www.lua.org/manual/5.4/manual.html#lua_resetthread
#[cfg(feature = "async")] #[cfg(feature = "async")]
#[cfg_attr(docsrs, doc(cfg(feature = "async")))]
pub thread_cache_size: usize, pub thread_cache_size: usize,
} }
@ -188,6 +189,7 @@ impl LuaOptions {
/// ///
/// [`thread_cache_size`]: #structfield.thread_cache_size /// [`thread_cache_size`]: #structfield.thread_cache_size
#[cfg(feature = "async")] #[cfg(feature = "async")]
#[cfg_attr(docsrs, doc(cfg(feature = "async")))]
pub const fn thread_cache_size(mut self, size: usize) -> Self { pub const fn thread_cache_size(mut self, size: usize) -> Self {
self.thread_cache_size = size; self.thread_cache_size = size;
self self
@ -616,7 +618,7 @@ impl Lua {
/// ///
/// Behavior is similar to Lua's [`require`] function. /// Behavior is similar to Lua's [`require`] function.
/// ///
/// [`require`]: https://www.lua.org/manual/5.3/manual.html#pdf-require /// [`require`]: https://www.lua.org/manual/5.4/manual.html#pdf-require
pub fn load_from_function<'lua, S, T>( pub fn load_from_function<'lua, S, T>(
&'lua self, &'lua self,
modname: &S, modname: &S,
@ -935,7 +937,7 @@ impl Lua {
/// Does not work on module mode where Lua state is managed externally. /// Does not work on module mode where Lua state is managed externally.
/// ///
/// Requires `feature = "lua54/lua53/lua52"` /// Requires `feature = "lua54/lua53/lua52"`
#[cfg(any(feature = "lua54", feature = "lua53", feature = "lua52", doc))] #[cfg(any(feature = "lua54", feature = "lua53", feature = "lua52"))]
pub fn set_memory_limit(&self, memory_limit: usize) -> Result<usize> { pub fn set_memory_limit(&self, memory_limit: usize) -> Result<usize> {
unsafe { unsafe {
match &mut (*self.extra.get()).mem_info { match &mut (*self.extra.get()).mem_info {
@ -952,7 +954,7 @@ impl Lua {
/// Returns true if the garbage collector is currently running automatically. /// Returns true if the garbage collector is currently running automatically.
/// ///
/// Requires `feature = "lua54/lua53/lua52"` /// Requires `feature = "lua54/lua53/lua52"`
#[cfg(any(feature = "lua54", feature = "lua53", feature = "lua52", doc))] #[cfg(any(feature = "lua54", feature = "lua53", feature = "lua52"))]
pub fn gc_is_running(&self) -> bool { pub fn gc_is_running(&self) -> bool {
let state = self.main_state.unwrap_or(self.state); let state = self.main_state.unwrap_or(self.state);
unsafe { ffi::lua_gc(state, ffi::LUA_GCISRUNNING, 0) != 0 } unsafe { ffi::lua_gc(state, ffi::LUA_GCISRUNNING, 0) != 0 }
@ -1005,10 +1007,10 @@ impl Lua {
/// Sets the 'pause' value of the collector. /// Sets the 'pause' value of the collector.
/// ///
/// Returns the previous value of 'pause'. More information can be found in the [Lua 5.3 /// Returns the previous value of 'pause'. More information can be found in the Lua
/// documentation][lua_doc]. /// [documentation][lua_doc].
/// ///
/// [lua_doc]: https://www.lua.org/manual/5.3/manual.html#2.5 /// [lua_doc]: https://www.lua.org/manual/5.4/manual.html#2.5
pub fn gc_set_pause(&self, pause: c_int) -> c_int { pub fn gc_set_pause(&self, pause: c_int) -> c_int {
let state = self.main_state.unwrap_or(self.state); let state = self.main_state.unwrap_or(self.state);
unsafe { ffi::lua_gc(state, ffi::LUA_GCSETPAUSE, pause) } unsafe { ffi::lua_gc(state, ffi::LUA_GCSETPAUSE, pause) }
@ -1017,9 +1019,9 @@ impl Lua {
/// Sets the 'step multiplier' value of the collector. /// Sets the 'step multiplier' value of the collector.
/// ///
/// Returns the previous value of the 'step multiplier'. More information can be found in the /// Returns the previous value of the 'step multiplier'. More information can be found in the
/// Lua 5.x [documentation][lua_doc]. /// Lua [documentation][lua_doc].
/// ///
/// [lua_doc]: https://www.lua.org/manual/5.3/manual.html#2.5 /// [lua_doc]: https://www.lua.org/manual/5.4/manual.html#2.5
pub fn gc_set_step_multiplier(&self, step_multiplier: c_int) -> c_int { pub fn gc_set_step_multiplier(&self, step_multiplier: c_int) -> c_int {
let state = self.main_state.unwrap_or(self.state); let state = self.main_state.unwrap_or(self.state);
unsafe { ffi::lua_gc(state, ffi::LUA_GCSETSTEPMUL, step_multiplier) } unsafe { ffi::lua_gc(state, ffi::LUA_GCSETSTEPMUL, step_multiplier) }
@ -1028,7 +1030,7 @@ impl Lua {
/// Changes the collector to incremental mode with the given parameters. /// Changes the collector to incremental mode with the given parameters.
/// ///
/// Returns the previous mode (always `GCMode::Incremental` in Lua < 5.4). /// Returns the previous mode (always `GCMode::Incremental` in Lua < 5.4).
/// More information can be found in the Lua 5.x [documentation][lua_doc]. /// More information can be found in the Lua [documentation][lua_doc].
/// ///
/// [lua_doc]: https://www.lua.org/manual/5.4/manual.html#2.5.1 /// [lua_doc]: https://www.lua.org/manual/5.4/manual.html#2.5.1
pub fn gc_inc(&self, pause: c_int, step_multiplier: c_int, step_size: c_int) -> GCMode { pub fn gc_inc(&self, pause: c_int, step_multiplier: c_int, step_size: c_int) -> GCMode {
@ -1070,7 +1072,7 @@ impl Lua {
/// Requires `feature = "lua54"` /// Requires `feature = "lua54"`
/// ///
/// [lua_doc]: https://www.lua.org/manual/5.4/manual.html#2.5.2 /// [lua_doc]: https://www.lua.org/manual/5.4/manual.html#2.5.2
#[cfg(any(feature = "lua54", doc))] #[cfg(any(feature = "lua54"))]
pub fn gc_gen(&self, minor_multiplier: c_int, major_multiplier: c_int) -> GCMode { pub fn gc_gen(&self, minor_multiplier: c_int, major_multiplier: c_int) -> GCMode {
let state = self.main_state.unwrap_or(self.state); let state = self.main_state.unwrap_or(self.state);
let prev_mode = let prev_mode =
@ -2558,7 +2560,7 @@ pub enum ChunkMode {
/// Trait for types [loadable by Lua] and convertible to a [`Chunk`] /// Trait for types [loadable by Lua] and convertible to a [`Chunk`]
/// ///
/// [loadable by Lua]: https://www.lua.org/manual/5.3/manual.html#3.3.2 /// [loadable by Lua]: https://www.lua.org/manual/5.4/manual.html#3.3.2
/// [`Chunk`]: crate::Chunk /// [`Chunk`]: crate::Chunk
pub trait AsChunk<'lua> { pub trait AsChunk<'lua> {
/// Returns chunk data (can be text or binary) /// Returns chunk data (can be text or binary)
@ -2571,7 +2573,7 @@ pub trait AsChunk<'lua> {
/// Returns optional chunk [environment] /// Returns optional chunk [environment]
/// ///
/// [environment]: https://www.lua.org/manual/5.3/manual.html#2.2 /// [environment]: https://www.lua.org/manual/5.4/manual.html#2.2
fn env(&self, _lua: &'lua Lua) -> Result<Option<Value<'lua>>> { fn env(&self, _lua: &'lua Lua) -> Result<Option<Value<'lua>>> {
Ok(None) Ok(None)
} }

View File

@ -6,32 +6,32 @@ use std::u32;
pub struct StdLib(u32); pub struct StdLib(u32);
impl StdLib { impl StdLib {
/// [`coroutine`](https://www.lua.org/manual/5.3/manual.html#6.2) library /// [`coroutine`](https://www.lua.org/manual/5.4/manual.html#6.2) library
/// ///
/// Requires `feature = "lua54/lua53/lua52"` /// Requires `feature = "lua54/lua53/lua52"`
#[cfg(any(feature = "lua54", feature = "lua53", feature = "lua52", doc))] #[cfg(any(feature = "lua54", feature = "lua53", feature = "lua52"))]
pub const COROUTINE: StdLib = StdLib(1); pub const COROUTINE: StdLib = StdLib(1);
/// [`table`](https://www.lua.org/manual/5.3/manual.html#6.6) library /// [`table`](https://www.lua.org/manual/5.4/manual.html#6.6) library
pub const TABLE: StdLib = StdLib(1 << 1); pub const TABLE: StdLib = StdLib(1 << 1);
/// [`io`](https://www.lua.org/manual/5.3/manual.html#6.8) library /// [`io`](https://www.lua.org/manual/5.4/manual.html#6.8) library
pub const IO: StdLib = StdLib(1 << 2); pub const IO: StdLib = StdLib(1 << 2);
/// [`os`](https://www.lua.org/manual/5.3/manual.html#6.9) library /// [`os`](https://www.lua.org/manual/5.4/manual.html#6.9) library
pub const OS: StdLib = StdLib(1 << 3); pub const OS: StdLib = StdLib(1 << 3);
/// [`string`](https://www.lua.org/manual/5.3/manual.html#6.4) library /// [`string`](https://www.lua.org/manual/5.4/manual.html#6.4) library
pub const STRING: StdLib = StdLib(1 << 4); pub const STRING: StdLib = StdLib(1 << 4);
/// [`utf8`](https://www.lua.org/manual/5.3/manual.html#6.5) library /// [`utf8`](https://www.lua.org/manual/5.4/manual.html#6.5) library
/// ///
/// Requires `feature = "lua54/lua53"` /// Requires `feature = "lua54/lua53"`
#[cfg(any(feature = "lua54", feature = "lua53", doc))] #[cfg(any(feature = "lua54", feature = "lua53"))]
pub const UTF8: StdLib = StdLib(1 << 5); pub const UTF8: StdLib = StdLib(1 << 5);
/// [`bit`](https://www.lua.org/manual/5.2/manual.html#6.7) library /// [`bit`](https://www.lua.org/manual/5.2/manual.html#6.7) library
/// ///
/// Requires `feature = "lua52/luajit"` /// Requires `feature = "lua52/luajit"`
#[cfg(any(feature = "lua52", feature = "luajit", doc))] #[cfg(any(feature = "lua52", feature = "luajit", doc))]
pub const BIT: StdLib = StdLib(1 << 6); pub const BIT: StdLib = StdLib(1 << 6);
/// [`math`](https://www.lua.org/manual/5.3/manual.html#6.7) library /// [`math`](https://www.lua.org/manual/5.4/manual.html#6.7) library
pub const MATH: StdLib = StdLib(1 << 7); pub const MATH: StdLib = StdLib(1 << 7);
/// [`package`](https://www.lua.org/manual/5.3/manual.html#6.3) library /// [`package`](https://www.lua.org/manual/5.4/manual.html#6.3) library
pub const PACKAGE: StdLib = StdLib(1 << 8); pub const PACKAGE: StdLib = StdLib(1 << 8);
/// [`jit`](http://luajit.org/ext_jit.html) library /// [`jit`](http://luajit.org/ext_jit.html) library
/// ///
@ -44,7 +44,7 @@ impl StdLib {
/// Requires `feature = "luajit"` /// Requires `feature = "luajit"`
#[cfg(any(feature = "luajit", doc))] #[cfg(any(feature = "luajit", doc))]
pub const FFI: StdLib = StdLib(1 << 30); pub const FFI: StdLib = StdLib(1 << 30);
/// (**unsafe**) [`debug`](https://www.lua.org/manual/5.3/manual.html#6.10) library /// (**unsafe**) [`debug`](https://www.lua.org/manual/5.4/manual.html#6.10) library
pub const DEBUG: StdLib = StdLib(1 << 31); pub const DEBUG: StdLib = StdLib(1 << 31);
/// No libraries /// No libraries

View File

@ -380,7 +380,7 @@ impl<'lua> Table<'lua> {
/// ``` /// ```
/// ///
/// [`Result`]: crate::Result /// [`Result`]: crate::Result
/// [Lua manual]: http://www.lua.org/manual/5.3/manual.html#pdf-next /// [Lua manual]: http://www.lua.org/manual/5.4/manual.html#pdf-next
pub fn pairs<K: FromLua<'lua>, V: FromLua<'lua>>(self) -> TablePairs<'lua, K, V> { pub fn pairs<K: FromLua<'lua>, V: FromLua<'lua>>(self) -> TablePairs<'lua, K, V> {
TablePairs { TablePairs {
table: self.0, table: self.0,
@ -429,7 +429,7 @@ impl<'lua> Table<'lua> {
/// ///
/// [`pairs`]: #method.pairs /// [`pairs`]: #method.pairs
/// [`Result`]: crate::Result /// [`Result`]: crate::Result
/// [Lua manual]: http://www.lua.org/manual/5.3/manual.html#pdf-next /// [Lua manual]: http://www.lua.org/manual/5.4/manual.html#pdf-next
pub fn sequence_values<V: FromLua<'lua>>(self) -> TableSequence<'lua, V> { pub fn sequence_values<V: FromLua<'lua>>(self) -> TableSequence<'lua, V> {
TableSequence { TableSequence {
table: self.0, table: self.0,
@ -514,6 +514,7 @@ pub trait TableExt<'lua> {
/// ///
/// The metamethod is called with the table as its first argument, followed by the passed arguments. /// The metamethod is called with the table as its first argument, followed by the passed arguments.
#[cfg(feature = "async")] #[cfg(feature = "async")]
#[cfg_attr(docsrs, doc(cfg(feature = "async")))]
fn call_async<'fut, A, R>(&self, args: A) -> LocalBoxFuture<'fut, Result<R>> fn call_async<'fut, A, R>(&self, args: A) -> LocalBoxFuture<'fut, Result<R>>
where where
'lua: 'fut, 'lua: 'fut,

View File

@ -7,7 +7,7 @@ use crate::types::LuaRef;
use crate::util::{check_stack, error_traceback, pop_error, StackGuard}; use crate::util::{check_stack, error_traceback, pop_error, StackGuard};
use crate::value::{FromLuaMulti, ToLuaMulti}; use crate::value::{FromLuaMulti, ToLuaMulti};
#[cfg(any(feature = "lua54", all(feature = "luajit", feature = "vendored"), doc))] #[cfg(any(feature = "lua54", all(feature = "luajit", feature = "vendored")))]
use crate::function::Function; use crate::function::Function;
#[cfg(feature = "async")] #[cfg(feature = "async")]
@ -182,7 +182,7 @@ impl<'lua> Thread<'lua> {
/// ///
/// [Lua 5.4]: https://www.lua.org/manual/5.4/manual.html#lua_resetthread /// [Lua 5.4]: https://www.lua.org/manual/5.4/manual.html#lua_resetthread
/// [LuaJIT]: https://github.com/openresty/luajit2#lua_resetthread /// [LuaJIT]: https://github.com/openresty/luajit2#lua_resetthread
#[cfg(any(feature = "lua54", all(feature = "luajit", feature = "vendored"), doc))] #[cfg(any(feature = "lua54", all(feature = "luajit", feature = "vendored")))]
pub fn reset(&self, func: Function<'lua>) -> Result<()> { pub fn reset(&self, func: Function<'lua>) -> Result<()> {
let lua = self.0.lua; let lua = self.0.lua;
unsafe { unsafe {

View File

@ -54,29 +54,29 @@ pub enum MetaMethod {
Unm, Unm,
/// The floor division (//) operator. /// The floor division (//) operator.
/// Requires `feature = "lua54/lua53"` /// Requires `feature = "lua54/lua53"`
#[cfg(any(feature = "lua54", feature = "lua53", doc))] #[cfg(any(feature = "lua54", feature = "lua53"))]
IDiv, IDiv,
/// The bitwise AND (&) operator. /// The bitwise AND (&) operator.
/// Requires `feature = "lua54/lua53"` /// Requires `feature = "lua54/lua53"`
#[cfg(any(feature = "lua54", feature = "lua53", doc))] #[cfg(any(feature = "lua54", feature = "lua53"))]
BAnd, BAnd,
/// The bitwise OR (|) operator. /// The bitwise OR (|) operator.
/// Requires `feature = "lua54/lua53"` /// Requires `feature = "lua54/lua53"`
#[cfg(any(feature = "lua54", feature = "lua53", doc))] #[cfg(any(feature = "lua54", feature = "lua53"))]
BOr, BOr,
/// The bitwise XOR (binary ~) operator. /// The bitwise XOR (binary ~) operator.
/// Requires `feature = "lua54/lua53"` /// Requires `feature = "lua54/lua53"`
#[cfg(any(feature = "lua54", feature = "lua53", doc))] #[cfg(any(feature = "lua54", feature = "lua53"))]
BXor, BXor,
/// The bitwise NOT (unary ~) operator. /// The bitwise NOT (unary ~) operator.
/// Requires `feature = "lua54/lua53"` /// Requires `feature = "lua54/lua53"`
#[cfg(any(feature = "lua54", feature = "lua53", doc))] #[cfg(any(feature = "lua54", feature = "lua53"))]
BNot, BNot,
/// The bitwise left shift (<<) operator. /// The bitwise left shift (<<) operator.
#[cfg(any(feature = "lua54", feature = "lua53", doc))] #[cfg(any(feature = "lua54", feature = "lua53"))]
Shl, Shl,
/// The bitwise right shift (>>) operator. /// The bitwise right shift (>>) operator.
#[cfg(any(feature = "lua54", feature = "lua53", doc))] #[cfg(any(feature = "lua54", feature = "lua53"))]
Shr, Shr,
/// The string concatenation operator `..`. /// The string concatenation operator `..`.
Concat, Concat,
@ -108,7 +108,6 @@ pub enum MetaMethod {
feature = "lua53", feature = "lua53",
feature = "lua52", feature = "lua52",
feature = "luajit52", feature = "luajit52",
doc
))] ))]
Pairs, Pairs,
/// The `__ipairs` metamethod. /// The `__ipairs` metamethod.
@ -130,7 +129,7 @@ pub enum MetaMethod {
/// Requires `feature = "lua54"` /// Requires `feature = "lua54"`
/// ///
/// [lua_doc]: https://www.lua.org/manual/5.4/manual.html#3.3.8 /// [lua_doc]: https://www.lua.org/manual/5.4/manual.html#3.3.8
#[cfg(any(feature = "lua54", doc))] #[cfg(any(feature = "lua54"))]
Close, Close,
/// A custom metamethod. /// A custom metamethod.
/// ///