pub trait ActorSpec {
    type Actor;
    type Client;
    type Configuration;
    type Data;

    fn authenticate(&self, client: Self::Client) -> Self::Client;
    fn configure(
        &self,
        configuration: Self::Configuration
    ) -> Self::Configuration; fn constructor(&self) -> Self::Actor; fn datastream(&self, destination: String) -> Self::Data; }

Required Associated Types

Required Methods

Implementors