pub trait AsyncModel {
    type Actor;
    type Client;
    type Config;
    type Data;

    fn controller(config: Self::Config);
    fn constructor(&self) -> Result<Self, Box<dyn Error>>
    where
        Self: Sized
; }

Required Associated Types

Required Methods

Implementors