Trait IAmsiStream_Impl
pub trait IAmsiStream_Impl: IUnknownImpl {
// 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<()>
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.