[][src]Trait luajit::types::LuaValue

pub trait LuaValue {
    fn push_val(self, l: *mut lua_State);
}

Represents any value that can be pushed onto the Lua stack

Required methods

fn push_val(self, l: *mut lua_State)

push_val should push the value of this type the the top of the stack on Lua state l.

Loading content...

Implementations on Foreign Types

impl LuaValue for i32[src]

impl LuaValue for i64[src]

impl LuaValue for u32[src]

impl LuaValue for u64[src]

impl<'a> LuaValue for &'a str[src]

impl LuaValue for String[src]

impl LuaValue for bool[src]

impl LuaValue for f32[src]

impl LuaValue for f64[src]

impl LuaValue for Option<LuaFunction>[src]

Loading content...

Implementors

impl LuaValue for LuaFunction[src]

impl<T> LuaValue for T where
    T: LuaObject
[src]

Loading content...