windows::Win32::System::RemoteDesktop

Trait IRemoteDesktopClientActions_Impl

pub trait IRemoteDesktopClientActions_Impl: IDispatch_Impl {
    // Required methods
    fn SuspendScreenUpdates(&self) -> Result<()>;
    fn ResumeScreenUpdates(&self) -> Result<()>;
    fn ExecuteRemoteAction(&self, remoteaction: RemoteActionType) -> Result<()>;
    fn GetSnapshot(
        &self,
        snapshotencoding: SnapshotEncodingType,
        snapshotformat: SnapshotFormatType,
        snapshotwidth: u32,
        snapshotheight: u32,
    ) -> Result<BSTR>;
}

Required Methods§

fn SuspendScreenUpdates(&self) -> Result<()>

fn ResumeScreenUpdates(&self) -> Result<()>

fn ExecuteRemoteAction(&self, remoteaction: RemoteActionType) -> Result<()>

fn GetSnapshot( &self, snapshotencoding: SnapshotEncodingType, snapshotformat: SnapshotFormatType, snapshotwidth: u32, snapshotheight: u32, ) -> Result<BSTR>

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.

Implementors§