Enum lua_actor::message::LuaMessage[][src]

pub enum LuaMessage {
    String(String),
    Integer(i64),
    Number(f64),
    Boolean(bool),
    Nil,
    Table(HashMap<String, LuaMessage>),
    Array(Vec<LuaMessage>),
}

Variants

Trait Implementations

impl Debug for LuaMessage
[src]

Formats the value using the given formatter. Read more

impl PartialEq for LuaMessage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for LuaMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<bool> for LuaMessage
[src]

Performs the conversion.

impl From<LuaMessage> for Option<bool>
[src]

Performs the conversion.

impl<'l> From<&'l str> for LuaMessage
[src]

Performs the conversion.

impl From<String> for LuaMessage
[src]

Performs the conversion.

impl From<LuaMessage> for Option<String>
[src]

Performs the conversion.

impl From<i8> for LuaMessage
[src]

Performs the conversion.

impl From<LuaMessage> for Option<i8>
[src]

Performs the conversion.

impl From<u8> for LuaMessage
[src]

Performs the conversion.

impl From<LuaMessage> for Option<u8>
[src]

Performs the conversion.

impl From<i16> for LuaMessage
[src]

Performs the conversion.

impl From<LuaMessage> for Option<i16>
[src]

Performs the conversion.

impl From<u16> for LuaMessage
[src]

Performs the conversion.

impl From<LuaMessage> for Option<u16>
[src]

Performs the conversion.

impl From<i32> for LuaMessage
[src]

Performs the conversion.

impl From<LuaMessage> for Option<i32>
[src]

Performs the conversion.

impl From<u32> for LuaMessage
[src]

Performs the conversion.

impl From<LuaMessage> for Option<u32>
[src]

Performs the conversion.

impl From<i64> for LuaMessage
[src]

Performs the conversion.

impl From<LuaMessage> for Option<i64>
[src]

Performs the conversion.

impl From<usize> for LuaMessage
[src]

Performs the conversion.

impl From<LuaMessage> for Option<usize>
[src]

Performs the conversion.

impl From<isize> for LuaMessage
[src]

Performs the conversion.

impl From<LuaMessage> for Option<isize>
[src]

Performs the conversion.

impl From<HashMap<String, LuaMessage>> for LuaMessage
[src]

Performs the conversion.

impl From<LuaMessage> for Option<HashMap<String, LuaMessage>>
[src]

Performs the conversion.

impl From<Vec<LuaMessage>> for LuaMessage
[src]

Performs the conversion.

impl From<LuaMessage> for Option<Vec<LuaMessage>>
[src]

Performs the conversion.

impl From<f32> for LuaMessage
[src]

Performs the conversion.

impl From<LuaMessage> for Option<f32>
[src]

Performs the conversion.

impl From<f64> for LuaMessage
[src]

Performs the conversion.

impl From<LuaMessage> for Option<f64>
[src]

Performs the conversion.

impl<'lua> FromLua<'lua> for LuaMessage
[src]

Performs the conversion.

impl<'lua> ToLua<'lua> for LuaMessage
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for LuaMessage

impl Sync for LuaMessage