Struct luaext::types::nil::LuaNil [] [src]

pub struct LuaNil { /* fields omitted */ }

Represents a nil value on the Lua stack

Methods

impl LuaNil
[src]

Create a new LuaNil given an index

Trait Implementations

impl LuaStackable for LuaNil
[src]

Get the position of this value on the stack

impl ToLua for LuaNil
[src]

Pushes a value of type Self onto the stack of a Lua state.

impl FromLua for LuaNil
[src]

Converts the value on top of the stack of a Lua state to a value of type Option<Self>. Read more