Struct Chunk

Source
pub struct Chunk<'lua, 'a> { /* private fields */ }
Expand description

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

Implementations§

Source§

impl<'lua, 'a> Chunk<'lua, 'a>

Source

pub fn set_name(self, name: impl AsRef<str>) -> Result<Self>

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

Source

pub fn set_environment<V: ToLua<'lua>>(self, env: V) -> Result<Self>

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.

Source

pub fn set_mode(self, mode: ChunkMode) -> Self

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

Be aware, Lua does not check the consistency of the code inside binary chunks. Running maliciously crafted bytecode can crash the interpreter.

Source

pub fn set_compiler(self, compiler: Compiler) -> Self

Available on crate feature luau only.

Sets or overwrites a Luau compiler used for this chunk.

See Compiler for details and possible options.

Requires feature = "luau"

Source

pub fn exec(self) -> Result<()>

Execute this chunk of code.

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

Source

pub fn exec_async<'fut>(self) -> LocalBoxFuture<'fut, Result<()>>
where 'lua: 'fut,

Available on crate feature async only.

Asynchronously execute this chunk of code.

See exec for more details.

Requires feature = "async"

Source

pub fn eval<R: FromLuaMulti<'lua>>(self) -> Result<R>

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.

Source

pub fn eval_async<'fut, R>(self) -> LocalBoxFuture<'fut, Result<R>>
where R: FromLuaMulti<'lua> + 'fut, 'lua: 'fut,

Available on crate feature async only.

Asynchronously evaluate the chunk as either an expression or block.

See eval for more details.

Requires feature = "async"

Source

pub fn call<A: ToLuaMulti<'lua>, R: FromLuaMulti<'lua>>( self, args: A, ) -> Result<R>

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

This is equivalent to into_function and calling the resulting function.

Source

pub fn call_async<'fut, A, R>(self, args: A) -> LocalBoxFuture<'fut, Result<R>>
where A: ToLuaMulti<'lua>, R: FromLuaMulti<'lua> + 'fut, 'lua: 'fut,

Available on crate feature async only.

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

See call for more details.

Requires feature = "async"

Source

pub fn into_function(self) -> Result<Function<'lua>>

Load this chunk into a regular Function.

This simply compiles the chunk without actually executing it.

Auto Trait Implementations§

§

impl<'lua, 'a> Freeze for Chunk<'lua, 'a>

§

impl<'lua, 'a> !RefUnwindSafe for Chunk<'lua, 'a>

§

impl<'lua, 'a> !Send for Chunk<'lua, 'a>

§

impl<'lua, 'a> !Sync for Chunk<'lua, 'a>

§

impl<'lua, 'a> Unpin for Chunk<'lua, 'a>

§

impl<'lua, 'a> !UnwindSafe for Chunk<'lua, 'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.