Trait windows::Win32::System::Antimalware::IAmsiStream_Impl

pub trait IAmsiStream_Impl: Sized {
    // Required methods
    fn GetAttribute(
        &self,
        attribute: AMSI_ATTRIBUTE,
        datasize: u32,
        data: *mut u8,
        retdata: *mut u32,
    ) -> Result<()>;
    fn Read(
        &self,
        position: u64,
        size: u32,
        buffer: *mut u8,
        readsize: *mut u32,
    ) -> Result<()>;
}

Required Methods§

fn GetAttribute( &self, attribute: AMSI_ATTRIBUTE, datasize: u32, data: *mut u8, retdata: *mut u32, ) -> Result<()>

fn Read( &self, position: u64, size: u32, buffer: *mut u8, readsize: *mut u32, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§