Struct tlua::LuaCodeFromReader

source ·
pub struct LuaCodeFromReader<R> { /* private fields */ }
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 lua = tlua::Lua::new();

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

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

Implementations§

source§

impl<R> LuaCodeFromReader<R>

source

pub fn new(reader: R) -> Self

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<L, R> PushInto<L> for LuaCodeFromReader<R>
where L: AsLua, R: Read,

§

type Err = LuaError

source§

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

Push the value into lua by value
source§

impl<L, R> PushOneInto<L> for LuaCodeFromReader<R>
where L: AsLua, R: Read,

Auto Trait Implementations§

§

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.