pub trait IMitmQueryService: IObject {
    fn should_mitm(&mut self, info: MitmProcessInfo) -> Result<bool>;

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

Required Methods

Provided Methods

Implementors