pub trait IAntimalwareUacProvider_Impl: Sized {
    // Required methods
    fn UacScan(
        &self,
        context: *const AMSI_UAC_REQUEST_CONTEXT,
    ) -> Result<AMSI_RESULT>;
    fn DisplayName(&self) -> Result<PWSTR>;
}

Required Methods§

fn UacScan( &self, context: *const AMSI_UAC_REQUEST_CONTEXT, ) -> Result<AMSI_RESULT>

fn DisplayName(&self) -> Result<PWSTR>

Object Safety§

This trait is not object safe.

Implementors§