Trait ISniffStream_Impl
pub trait ISniffStream_Impl: IUnknownImpl {
// Required methods
fn Init(&self, pstream: Ref<'_, IStream>) -> Result<()>;
fn Peek(
&self,
pbuffer: *mut c_void,
nbytes: u32,
pnbytesread: *mut u32,
) -> Result<()>;
}
Required Methods§
fn Init(&self, pstream: Ref<'_, IStream>) -> Result<()>
fn Peek( &self, pbuffer: *mut c_void, nbytes: u32, pnbytesread: *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.