Trait IWTSProtocolConnectionCallback_Impl
pub trait IWTSProtocolConnectionCallback_Impl: IUnknownImpl {
// Required methods
fn OnReady(&self) -> Result<()>;
fn BrokenConnection(&self, reason: u32, source: u32) -> Result<()>;
fn StopScreenUpdates(&self) -> Result<()>;
fn RedrawWindow(&self, rect: *const WTS_SMALL_RECT) -> Result<()>;
fn DisplayIOCtl(&self, displayioctl: *const WTS_DISPLAY_IOCTL) -> Result<()>;
}
Required Methods§
fn OnReady(&self) -> Result<()>
fn BrokenConnection(&self, reason: u32, source: u32) -> Result<()>
fn StopScreenUpdates(&self) -> Result<()>
fn RedrawWindow(&self, rect: *const WTS_SMALL_RECT) -> Result<()>
fn DisplayIOCtl(&self, displayioctl: *const WTS_DISPLAY_IOCTL) -> 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.