pub trait UserServiceModule {
    // Required method
    fn instantiate(
        &self,
        runtime: ServiceSyncRuntime
    ) -> Result<UserServiceInstance, ExecutionError>;
}
Expand description

A factory trait to obtain a UserService from a UserServiceModule

Required Methods§

Implementors§