pub trait IDebugMonitorInterface: IObject {
    fn get_application_process_id_deprecated(&mut self) -> Result<u64>;
    fn get_application_process_id(&mut self) -> Result<u64>;

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

Required Methods

Provided Methods

Implementors