pub trait IPmService: IObject {
    fn get_pm_module(&mut self) -> Result<Shared<dyn IPmModule>>;

    fn sf_server_impl_get_pm_module(
        &mut self,
        protocol: CommandProtocol,
        ctx: &mut ServerContext<'_>
    ) -> Result<()> { ... } fn get_sf_command_metadata_table(&self) -> CommandMetadataTable { ... } }

Required Methods

Provided Methods

Implementors