pub trait IAntimalwareProvider_Impl: Sized {
    // Required methods
    fn Scan(&self, stream: Option<&IAmsiStream>) -> Result<AMSI_RESULT>;
    fn CloseSession(&self, session: u64);
    fn DisplayName(&self) -> Result<PWSTR>;
}

Required Methods§

fn Scan(&self, stream: Option<&IAmsiStream>) -> Result<AMSI_RESULT>

fn CloseSession(&self, session: u64)

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

Object Safety§

This trait is not object safe.

Implementors§