windows::Win32::System::Antimalware

Trait IAntimalware_Impl

pub trait IAntimalware_Impl: IUnknownImpl {
    // Required methods
    fn Scan(
        &self,
        stream: Ref<'_, IAmsiStream>,
        result: *mut AMSI_RESULT,
        provider: OutRef<'_, IAntimalwareProvider>,
    ) -> Result<()>;
    fn CloseSession(&self, session: u64);
}

Required Methods§

fn Scan( &self, stream: Ref<'_, IAmsiStream>, result: *mut AMSI_RESULT, provider: OutRef<'_, IAntimalwareProvider>, ) -> Result<()>

fn CloseSession(&self, session: u64)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§