windows::Win32::System::Com

Trait AsyncIPipeByte_Impl

pub trait AsyncIPipeByte_Impl: IUnknownImpl {
    // Required methods
    fn Begin_Pull(&self, crequest: u32) -> Result<()>;
    fn Finish_Pull(&self, buf: *mut u8, pcreturned: *mut u32) -> Result<()>;
    fn Begin_Push(&self, buf: *const u8, csent: u32) -> Result<()>;
    fn Finish_Push(&self) -> Result<()>;
}

Required Methods§

fn Begin_Pull(&self, crequest: u32) -> Result<()>

fn Finish_Pull(&self, buf: *mut u8, pcreturned: *mut u32) -> Result<()>

fn Begin_Push(&self, buf: *const u8, csent: u32) -> Result<()>

fn Finish_Push(&self) -> 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.

Implementors§