pub trait MonitorIdExt {
    // Required methods
    fn native_id(&self) -> String;
    fn hmonitor(&self) -> *mut c_void;
}
Expand description

Additional methods on MonitorId that are specific to Windows.

Required Methods§

source

fn native_id(&self) -> String

Returns the name of the monitor adapter specific to the Win32 API.

source

fn hmonitor(&self) -> *mut c_void

Returns the handle of the monitor - HMONITOR.

Implementors§