windows::Win32::System::DesktopSharing

Trait IRDPSRAPIFrameBuffer_Impl

pub trait IRDPSRAPIFrameBuffer_Impl: IDispatch_Impl {
    // Required methods
    fn Width(&self) -> Result<i32>;
    fn Height(&self) -> Result<i32>;
    fn Bpp(&self) -> Result<i32>;
    fn GetFrameBufferBits(
        &self,
        x: i32,
        y: i32,
        width: i32,
        heigth: i32,
    ) -> Result<*mut SAFEARRAY>;
}

Required Methods§

fn Width(&self) -> Result<i32>

fn Height(&self) -> Result<i32>

fn Bpp(&self) -> Result<i32>

fn GetFrameBufferBits( &self, x: i32, y: i32, width: i32, heigth: i32, ) -> Result<*mut SAFEARRAY>

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§