Struct mlua::prelude::LuaChunk[][src]

pub struct LuaChunk<'lua, 'a> { /* fields omitted */ }
Expand description

Returned from Lua::load and is used to finalize loading and executing Lua main chunks.

Implementations

Sets the name of this chunk, which results in more informative error traces.

Sets the first upvalue (_ENV) of the loaded chunk to the given value.

Lua main chunks always have exactly one upvalue, and this upvalue is used as the _ENV variable inside the chunk. By default this value is set to the global environment.

Calling this method changes the _ENV upvalue to the value provided, and variables inside the chunk will refer to the given environment rather than the global one.

All global variables (including the standard library!) are looked up in _ENV, so it may be necessary to populate the environment in order for scripts using custom environments to be useful.

Sets whether the chunk is text or binary (autodetected by default).

Lua does not check the consistency of binary chunks, therefore this mode is allowed only for instances created with Lua::unsafe_new.

Execute this chunk of code.

This is equivalent to calling the chunk function with no arguments and no return values.

This is supported on crate feature async only.

Asynchronously execute this chunk of code.

See Chunk::exec for more details.

Requires feature = "async"

Evaluate the chunk as either an expression or block.

If the chunk can be parsed as an expression, this loads and executes the chunk and returns the value that it evaluates to. Otherwise, the chunk is interpreted as a block as normal, and this is equivalent to calling exec.

This is supported on crate feature async only.

Asynchronously evaluate the chunk as either an expression or block.

See Chunk::eval for more details.

Requires feature = "async"

Load the chunk function and call it with the given arguments.

This is equivalent to into_function and calling the resulting function.

This is supported on crate feature async only.

Load the chunk function and asynchronously call it with the given arguments.

See Chunk::call for more details.

Requires feature = "async"

Load this chunk into a regular Function.

This simply compiles the chunk without actually executing it.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.