Trait backstage::actor::Builder[][src]

pub trait Builder {
    type State;
    fn build(self) -> Self::State;
}

Allows an actor to be built by parts

Associated Types

type State[src]

The “state” (actor type) which is built

Loading content...

Required methods

fn build(self) -> Self::State[src]

Build the actor

Loading content...

Implementors

Loading content...