Struct rlua::Scope

source ·
pub struct Scope<'lua, 'scope>
where 'lua: 'scope,
{ /* private fields */ }
Expand description

Constructed by the Lua::scope method, allows temporarily creating Lua userdata and callbacks that are not required to be Send or ’static.

See Lua::scope for more details.

Implementations§

source§

impl<'lua, 'scope> Scope<'lua, 'scope>

source

pub fn create_function<'callback, A, R, F>( &'callback self, func: F ) -> Result<Function<'lua>, Error>
where A: FromLuaMulti<'callback>, R: IntoLuaMulti<'callback>, F: Fn(&'callback Lua, A) -> Result<R, Error> + 'scope,

Wraps a Rust function or closure, creating a callable Lua function handle to it.

This is a version of Lua::create_function that creates a callback which expires on scope drop. See Lua::scope for more details.

source

pub fn create_function_mut<'callback, A, R, F>( &'callback self, func: F ) -> Result<Function<'lua>, Error>
where A: FromLuaMulti<'callback>, R: IntoLuaMulti<'callback>, F: FnMut(&'callback Lua, A) -> Result<R, Error> + 'scope,

Wraps a Rust mutable closure, creating a callable Lua function handle to it.

This is a version of Lua::create_function_mut that creates a callback which expires on scope drop. See Lua::scope and Scope::create_function for more details.

source

pub fn create_userdata<T>(&self, data: T) -> Result<AnyUserData<'lua>, Error>
where T: UserData + 'static,

Creates a Lua userdata object from a custom userdata type.

This is a version of Lua::create_userdata that creates a userdata which expires on scope drop, and does not require that the userdata type be Send (but still requires that the UserData be ’static). See Lua::scope for more details.

source

pub fn create_userdata_ref<T>( &self, data: &'scope T ) -> Result<AnyUserData<'lua>, Error>
where T: UserData + 'static,

Creates a Lua userdata object from a reference to custom userdata type.

This is a version of Lua::create_userdata that creates a userdata which expires on scope drop, and does not require that the userdata type be Send. This method takes non-’static reference to the data. See Lua::scope for more details.

Userdata created with this method will not be able to be mutated from Lua.

source

pub fn create_userdata_ref_mut<T>( &self, data: &'scope mut T ) -> Result<AnyUserData<'lua>, Error>
where T: UserData + 'static,

Creates a Lua userdata object from a mutable reference to custom userdata type.

This is a version of Lua::create_userdata that creates a userdata which expires on scope drop, and does not require that the userdata type be Send. This method takes non-’static mutable reference to the data. See Lua::scope for more details.

source

pub fn create_any_userdata<T>( &self, data: T ) -> Result<AnyUserData<'lua>, Error>
where T: 'static,

Creates a Lua userdata object from a custom Rust type.

This is a version of Lua::create_any_userdata that creates a userdata which expires on scope drop and does not require that the userdata type be Send (but still requires that the UserData be ’static). See Lua::scope for more details.

source

pub fn create_any_userdata_ref<T>( &self, data: &'scope T ) -> Result<AnyUserData<'lua>, Error>
where T: 'static,

Creates a Lua userdata object from a reference to custom Rust type.

This is a version of Lua::create_any_userdata that creates a userdata which expires on scope drop, and does not require that the Rust type be Send. This method takes non-’static reference to the data. See Lua::scope for more details.

Userdata created with this method will not be able to be mutated from Lua.

source

pub fn create_any_userdata_ref_mut<T>( &self, data: &'scope mut T ) -> Result<AnyUserData<'lua>, Error>
where T: 'static,

Creates a Lua userdata object from a mutable reference to custom Rust type.

This is a version of Lua::create_any_userdata that creates a userdata which expires on scope drop, and does not require that the Rust type be Send. This method takes non-’static mutable reference to the data. See Lua::scope for more details.

source

pub fn create_nonstatic_userdata<T>( &self, data: T ) -> Result<AnyUserData<'lua>, Error>
where T: UserData + 'scope,

Creates a Lua userdata object from a custom userdata type.

This is a version of Lua::create_userdata that creates a userdata which expires on scope drop, and does not require that the userdata type be Send or ’static. See Lua::scope for more details.

Lifting the requirement that the UserData type be ’static comes with some important limitations, so if you only need to eliminate the Send requirement, it is probably better to use Scope::create_userdata instead.

The main limitation that comes from using non-’static userdata is that the produced userdata will no longer have a TypeId associated with it, because TypeId can only work for ’static types. This means that it is impossible, once the userdata is created, to get a reference to it back out of an AnyUserData handle. This also implies that the “function” type methods that can be added via UserDataMethods (the ones that accept AnyUserData as a first parameter) are vastly less useful. Also, there is no way to re-use a single metatable for multiple non-’static types, so there is a higher cost associated with creating the userdata metatable each time a new userdata is created.

Trait Implementations§

source§

impl<'lua, 'scope> Drop for Scope<'lua, 'scope>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'lua, 'scope> !RefUnwindSafe for Scope<'lua, 'scope>

§

impl<'lua, 'scope> !Send for Scope<'lua, 'scope>

§

impl<'lua, 'scope> !Sync for Scope<'lua, 'scope>

§

impl<'lua, 'scope> Unpin for Scope<'lua, 'scope>

§

impl<'lua, 'scope> !UnwindSafe for Scope<'lua, 'scope>

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>,

§

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>,

§

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.