Struct hlua::LuaCode

source ·
pub struct LuaCode<'a>(pub &'a str);
Expand description

Wrapper around a &str. When pushed, the content will be parsed as Lua code and turned into a function.

Since pushing this value can fail in case of a parsing error, you must use the checked_set method instead of set.

Note: This struct is a wrapper around LuaCodeFromReader. There’s no advantage in using it except that it is more convenient. More advanced usages (such as returning a Lua function from a Rust function) can be done with LuaCodeFromReader.

§Example

let mut lua = hlua::Lua::new();
lua.checked_set("hello", hlua::LuaCode("return 5")).unwrap();

let r: i32 = lua.execute("return hello();").unwrap();
assert_eq!(r, 5);

Tuple Fields§

§0: &'a str

Trait Implementations§

source§

impl<'a> Debug for LuaCode<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'lua, 'c, L> Push<L> for LuaCode<'c>
where L: AsMutLua<'lua>,

§

type Err = LuaError

Error that can happen when pushing a value.
source§

fn push_to_lua(self, lua: L) -> Result<PushGuard<L>, (LuaError, L)>

Pushes the value on the top of the stack. Read more
source§

fn push_no_err<E>(self, lua: L) -> PushGuard<L>
where Self: Sized + Push<L, Err = E>, E: Into<Void>,

Same as push_to_lua but can only succeed and is only available if Err is Void.
source§

impl<'lua, 'c, L> PushOne<L> for LuaCode<'c>
where L: AsMutLua<'lua>,

Auto Trait Implementations§

§

impl<'a> Freeze for LuaCode<'a>

§

impl<'a> RefUnwindSafe for LuaCode<'a>

§

impl<'a> Send for LuaCode<'a>

§

impl<'a> Sync for LuaCode<'a>

§

impl<'a> Unpin for LuaCode<'a>

§

impl<'a> UnwindSafe for LuaCode<'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>,

§

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.