Struct rlua::Chunk

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

Returned from Context::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<S: ?Sized + AsRef<[u8]>>( self, name: &S ) -> Result<Chunk<'lua, 'a>>

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<Chunk<'lua, 'a>>

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 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 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 call<A: ToLuaMulti<'lua>, R: FromLuaMulti<'lua>>( self, args: A ) -> Result<R>

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

This is equivalent to into_function and calling the resulting function.

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.

source

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

Load this chunk into a regular Function.

This simply compiles the chunk without actually executing it. Unlike into_function, this method allows loading code previously compiled and saved with Function::dump or string.dump(). This method is unsafe because there is no check that the precompiled Lua code is valid; if it is not this may cause a crash or other undefined behaviour.

Auto Trait Implementations§

§

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 Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.