pub trait WindowsCapturableWindowExt {
    // Required methods
    fn get_window_handle(&self) -> HWND;
    fn from_window_handle(
        window_handle: HWND
    ) -> Result<CapturableWindow, CapturableContentError>;
}
Expand description

Windows-specific extensions to capturable windows Windows-specific extensions for capturable windows

Required Methods§

source

fn get_window_handle(&self) -> HWND

Get the HWND for this capturable window.

source

fn from_window_handle( window_handle: HWND ) -> Result<CapturableWindow, CapturableContentError>

Get a capturable window from an HWND

Object Safety§

This trait is not object safe.

Implementors§