pub trait UserServiceModule:
DynClone
+ Any
+ Post
+ Send
+ Sync {
// Required method
fn instantiate(
&self,
runtime: ServiceSyncRuntimeHandle,
) -> Result<UserServiceInstance, ExecutionError>;
}
Expand description
A factory trait to obtain a UserService
from a UserServiceModule