Trait AsyncIPipeLong_Impl
pub trait AsyncIPipeLong_Impl: IUnknownImpl {
// Required methods
fn Begin_Pull(&self, crequest: u32) -> Result<()>;
fn Finish_Pull(&self, buf: *mut i32, pcreturned: *mut u32) -> Result<()>;
fn Begin_Push(&self, buf: *const i32, csent: u32) -> Result<()>;
fn Finish_Push(&self) -> Result<()>;
}
Required Methods§
fn Begin_Pull(&self, crequest: u32) -> Result<()>
fn Finish_Pull(&self, buf: *mut i32, pcreturned: *mut u32) -> Result<()>
fn Begin_Push(&self, buf: *const i32, 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.