[][src]Struct actix_lua::LuaActorBuilder

pub struct LuaActorBuilder { /* fields omitted */ }

LuaActorBuilder creates a new LuaActor with given Lua script.

Methods

impl LuaActorBuilder[src]

pub fn new() -> Self[src]

Initialize a new LuaActorBuilder

pub fn on_started(self, filename: &str) -> Self[src]

create a started hook with given lua file

pub fn on_started_with_lua(self, script: &str) -> Self[src]

create a started hook with given lua script

pub fn on_handle(self, filename: &str) -> Self[src]

handle message with given lua file

pub fn on_handle_with_lua(self, script: &str) -> Self[src]

handle message with given lua script

pub fn on_stopped(self, filename: &str) -> Self[src]

create a stopped hook with given lua file.

pub fn on_stopped_with_lua(self, script: &str) -> Self[src]

create a stopped hook with given lua script

pub fn build_with_vm(self, vm: Lua) -> Result<LuaActor, LuaError>[src]

build the actor with a preconfigured lua VM

It's important to use the rlua interface exported by actix-lua with use actix_lua::dev::rlua::*

pub fn build(self) -> Result<LuaActor, LuaError>[src]

build the actor

Trait Implementations

impl Default for LuaActorBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Erased for T