[−][src]Struct actix_lua::LuaActorBuilder
LuaActorBuilder
creates a new LuaActor
with given Lua script.
Methods
impl LuaActorBuilder
[src]
impl LuaActorBuilder
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]
impl Default for LuaActorBuilder
fn default() -> LuaActorBuilder | [src] |
Auto Trait Implementations
impl Send for LuaActorBuilder
impl Send for LuaActorBuilder
impl Sync for LuaActorBuilder
impl Sync for LuaActorBuilder
Blanket Implementations
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error> | [src] |
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T | [src] |
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
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.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error> | [src] |
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId | [src] |
impl<T> Erased for T
impl<T> Erased for T