pub trait ID2D1HwndRenderTarget_Impl: Sized + ID2D1RenderTarget_Impl {
    // Required methods
    fn CheckWindowState(&self) -> D2D1_WINDOW_STATE;
    fn Resize(&self, pixelsize: *const D2D_SIZE_U) -> Result<()>;
    fn GetHwnd(&self) -> HWND;
}

Required Methods§

fn CheckWindowState(&self) -> D2D1_WINDOW_STATE

fn Resize(&self, pixelsize: *const D2D_SIZE_U) -> Result<()>

fn GetHwnd(&self) -> HWND

Object Safety§

This trait is not object safe.

Implementors§