pub trait IInformationInterface: IObject {
    fn get_program_id(&mut self, process_id: u64) -> Result<u64>;

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

Required Methods

Provided Methods

Implementors