pub trait IRDPSRAPIFrameBuffer_Impl: Sized + 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>

Object Safety§

This trait is not object safe.

Implementors§