Struct hlua::LuaCodeFromReader

source ·
pub struct LuaCodeFromReader<R>(pub R);
Expand description

Wrapper around a Read object. 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 reading error or a parsing error, you must use the checked_set method instead of set.

§Example: returning a Lua function from a Rust function

use std::io::Cursor;

let mut lua = hlua::Lua::new();

lua.set("call_rust", hlua::function0(|| -> hlua::LuaCodeFromReader<Cursor<String>> {
    let lua_code = "return 18;";
    return hlua::LuaCodeFromReader(Cursor::new(lua_code.to_owned()));
}));

let r: i32 = lua.execute("local lua_func = call_rust(); return lua_func();").unwrap();
assert_eq!(r, 18);

Tuple Fields§

§0: R

Trait Implementations§

source§

impl<R: Debug> Debug for LuaCodeFromReader<R>

source§

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

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

impl<'lua, L, R> Push<L> for LuaCodeFromReader<R>
where L: AsMutLua<'lua>, R: Read,

§

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, L, R> PushOne<L> for LuaCodeFromReader<R>
where L: AsMutLua<'lua>, R: Read,

Auto Trait Implementations§

§

impl<R> Freeze for LuaCodeFromReader<R>
where R: Freeze,

§

impl<R> RefUnwindSafe for LuaCodeFromReader<R>
where R: RefUnwindSafe,

§

impl<R> Send for LuaCodeFromReader<R>
where R: Send,

§

impl<R> Sync for LuaCodeFromReader<R>
where R: Sync,

§

impl<R> Unpin for LuaCodeFromReader<R>
where R: Unpin,

§

impl<R> UnwindSafe for LuaCodeFromReader<R>
where R: UnwindSafe,

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.