pub trait ActionHandler {
    fn handle<T: RepositoryFactory>(
        &self,
        action: TcpClientAction,
        repository_factory: &T
    ) -> Result<(), ActionHandlerError>; }

Required Methods§

Implementors§