Trait IPipeByte_Impl
pub trait IPipeByte_Impl: IUnknownImpl {
// Required methods
fn Pull(
&self,
buf: *mut u8,
crequest: u32,
pcreturned: *mut u32,
) -> Result<()>;
fn Push(&self, buf: *const u8, csent: u32) -> Result<()>;
}
Required Methods§
fn Pull(&self, buf: *mut u8, crequest: u32, pcreturned: *mut u32) -> Result<()>
fn Push(&self, buf: *const u8, csent: 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.