pub trait IWSDInboundAttachment_Impl: Sized + IWSDAttachment_Impl {
    // Required methods
    fn Read(
        &self,
        pbuffer: *mut u8,
        dwbytestoread: u32,
        pdwnumberofbytesread: *mut u32
    ) -> Result<()>;
    fn Close(&self) -> Result<()>;
}

Required Methods§

fn Read( &self, pbuffer: *mut u8, dwbytestoread: u32, pdwnumberofbytesread: *mut u32 ) -> Result<()>

fn Close(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§