Enum actix_lua::LuaMessage[][src]

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

Variants

Trait Implementations

impl Handler<LuaMessage> for LuaActor
[src]

The type of value that this handle will return

Method is called for every message received by this Actor

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<A, M> MessageResponse<A, M> for LuaMessage where
    A: Actor,
    M: Message<Result = LuaMessage>, 
[src]

impl Message for LuaMessage
[src]

The type of value that this message will resolved with if it is successful. Read more

impl From<bool> for LuaMessage
[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<i8> for LuaMessage
[src]

Performs the conversion.

impl From<u8> for LuaMessage
[src]

Performs the conversion.

impl From<i16> for LuaMessage
[src]

Performs the conversion.

impl From<u16> for LuaMessage
[src]

Performs the conversion.

impl From<i32> for LuaMessage
[src]

Performs the conversion.

impl From<u32> for LuaMessage
[src]

Performs the conversion.

impl From<i64> for LuaMessage
[src]

Performs the conversion.

impl From<usize> for LuaMessage
[src]

Performs the conversion.

impl From<isize> for LuaMessage
[src]

Performs the conversion.

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

Performs the conversion.

impl From<f32> for LuaMessage
[src]

Performs the conversion.

impl From<f64> for LuaMessage
[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