Trait gmt_dos_actors::system::System

source ·
pub trait System: Sized + Clone + Display + Send + Sync + GetName {
    // Required methods
    fn build(&mut self) -> Result<&mut Self>;
    fn plain(&self) -> PlainActor;

    // Provided method
    fn name(&self) -> String { ... }
}
Expand description

System interface

Required Methods§

source

fn build(&mut self) -> Result<&mut Self>

source

fn plain(&self) -> PlainActor

Provided Methods§

source

fn name(&self) -> String

Object Safety§

This trait is not object safe.

Implementors§