Trait IWRdsGraphicsChannel_Impl
pub trait IWRdsGraphicsChannel_Impl: IUnknownImpl {
// Required methods
fn Write(
&self,
cbsize: u32,
pbuffer: *const u8,
pcontext: Ref<'_, IUnknown>,
) -> Result<()>;
fn Close(&self) -> Result<()>;
fn Open(
&self,
pchannelevents: Ref<'_, IWRdsGraphicsChannelEvents>,
popencontext: Ref<'_, IUnknown>,
) -> Result<()>;
}
Required Methods§
fn Write( &self, cbsize: u32, pbuffer: *const u8, pcontext: Ref<'_, IUnknown>, ) -> Result<()>
fn Close(&self) -> Result<()>
fn Open( &self, pchannelevents: Ref<'_, IWRdsGraphicsChannelEvents>, popencontext: Ref<'_, IUnknown>, ) -> 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.